| 125 | Movable(const Movable &m) : value{m.value} { print_copy_created(this); } |
| 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: |
no outgoing calls
no test coverage detected