| 1518 | } |
| 1519 | |
| 1520 | std::string callOptionalMethod(AbstractClass& ac, std::string s) { |
| 1521 | return ac.optionalMethod(s); |
| 1522 | } |
| 1523 | |
| 1524 | void callReturnsSharedPtrMethod(AbstractClass& ac) { |
| 1525 | std::shared_ptr<Derived> sp = ac.returnsSharedPtr(); |
nothing calls this directly
no test coverage detected