| 74 | class TestFactory4 : public TestFactory3 { |
| 75 | public: |
| 76 | TestFactory4() { print_default_created(this); } |
| 77 | explicit TestFactory4(int v) : TestFactory3(v) { print_created(this, v); } |
| 78 | ~TestFactory4() override { print_destroyed(this); } |
| 79 | }; |
no test coverage detected