| 186 | explicit MyObject4b(int i) : MyObject4a(i) { print_created(this); } |
| 187 | MyObject4b(const MyObject4b &) = delete; |
| 188 | ~MyObject4b() override { print_destroyed(this); } |
| 189 | }; |
| 190 | |
| 191 | // test_large_holder |
nothing calls this directly
no test coverage detected