| 30 | explicit ExampleMandA(std::string &&) {} |
| 31 | ExampleMandA(ExampleMandA &&e) noexcept : value(e.value) { print_move_created(this); } |
| 32 | ~ExampleMandA() { print_destroyed(this); } |
| 33 | |
| 34 | std::string toString() const { return "ExampleMandA[value=" + std::to_string(value) + "]"; } |
| 35 |
nothing calls this directly
no test coverage detected