| 65 | class MoveOrCopyInt { |
| 66 | public: |
| 67 | MoveOrCopyInt() { print_default_created(this); } |
| 68 | explicit MoveOrCopyInt(int v) : value{v} { print_created(this, value); } |
| 69 | MoveOrCopyInt(MoveOrCopyInt &&m) noexcept { |
| 70 | print_move_created(this, m.value); |
nothing calls this directly
no test coverage detected