| 1558 | }; |
| 1559 | |
| 1560 | std::string callAbstractMethod2(AbstractClassWithConstructor& ac) { |
| 1561 | return ac.abstractMethod(); |
| 1562 | } |
| 1563 | |
| 1564 | struct HeldAbstractClass : public PolyBase, public PolySecondBase { |
| 1565 | virtual void method() = 0; |
nothing calls this directly
no test coverage detected