| 301 | struct task_move_only |
| 302 | { |
| 303 | task_move_only() = default; |
| 304 | task_move_only(task_move_only &&) = default; |
| 305 | task_move_only & operator=(task_move_only &&) = delete; |
| 306 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected