| 81 | class TestFactory5 : public TestFactory3 { |
| 82 | public: |
| 83 | explicit TestFactory5(int i) : TestFactory3(i) { print_created(this, i); } |
| 84 | ~TestFactory5() override { print_destroyed(this); } |
| 85 | }; |
| 86 |
nothing calls this directly
no test coverage detected