| 211 | bool valid = true; |
| 212 | |
| 213 | MovableObject() = default; |
| 214 | MovableObject(const MovableObject &) = default; |
| 215 | MovableObject &operator=(const MovableObject &) = default; |
| 216 | MovableObject(MovableObject &&o) noexcept : valid(o.valid) { o.valid = false; } |
nothing calls this directly
no outgoing calls
no test coverage detected