| 126 | Movable(Movable &&m) noexcept : value{m.value} { print_move_created(this); } |
| 127 | std::string get_value() const { return std::to_string(value); } |
| 128 | ~Movable() { print_destroyed(this); } |
| 129 | |
| 130 | private: |
| 131 | int value; |
nothing calls this directly
no test coverage detected