| 46 | class MoveOnlyInt { |
| 47 | public: |
| 48 | MoveOnlyInt() { print_default_created(this); } |
| 49 | explicit MoveOnlyInt(int v) : value{v} { print_created(this, value); } |
| 50 | MoveOnlyInt(MoveOnlyInt &&m) noexcept { |
| 51 | print_move_created(this, m.value); |
nothing calls this directly
no test coverage detected