| 1527 | } |
| 1528 | |
| 1529 | void callDifferentArguments(AbstractClass& ac, |
| 1530 | int i, |
| 1531 | double d, |
| 1532 | unsigned char f, |
| 1533 | double q, |
| 1534 | std::string s) { |
| 1535 | return ac.differentArguments(i, d, f, q, s); |
| 1536 | } |
| 1537 | |
| 1538 | struct AbstractClassWithConstructor { |
| 1539 | explicit AbstractClassWithConstructor(std::string s) : s(s) {} |
nothing calls this directly
no test coverage detected