| 30 | TestFactory1 &operator=(TestFactory1 &&) = delete; |
| 31 | TestFactory1 &operator=(const TestFactory1 &) = delete; |
| 32 | ~TestFactory1() { print_destroyed(this); } |
| 33 | }; |
| 34 | // Non-public construction, but moveable: |
| 35 | class TestFactory2 { |
nothing calls this directly
no test coverage detected