| 35 | |
| 36 | struct lacking_move_ctor : public empty<lacking_move_ctor> { |
| 37 | lacking_move_ctor() = default; |
| 38 | lacking_move_ctor(const lacking_move_ctor &other) = delete; |
| 39 | lacking_move_ctor(lacking_move_ctor &&other) = delete; |
| 40 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected