| 215 | struct SharedPtrRef { |
| 216 | struct A { |
| 217 | A() { print_created(this); } |
| 218 | A(const A &) { print_copy_created(this); } |
| 219 | A(A &&) noexcept { print_move_created(this); } |
| 220 | ~A() { print_destroyed(this); } |
nothing calls this directly
no test coverage detected