| 184 | class MyObject4b : public MyObject4a { |
| 185 | public: |
| 186 | explicit MyObject4b(int i) : MyObject4a(i) { print_created(this); } |
| 187 | MyObject4b(const MyObject4b &) = delete; |
| 188 | ~MyObject4b() override { print_destroyed(this); } |
| 189 | }; |
no test coverage detected