| 22 | public: |
| 23 | explicit A(int v) : v(v) { print_created(this, v); } |
| 24 | ~A() { print_destroyed(this); } |
| 25 | A(const A &) { print_copy_created(this); } |
| 26 | A &operator=(const A ©) { |
| 27 | print_copy_assigned(this); |
nothing calls this directly
no test coverage detected