Movable but not copyable
| 237 | public: |
| 238 | // Movable but not copyable |
| 239 | task() = default; |
| 240 | task(task&& other) LIBASYNC_NOEXCEPT |
| 241 | : detail::basic_task<Result>(std::move(other)) {} |
| 242 | task& operator=(task&& other) LIBASYNC_NOEXCEPT |
nothing calls this directly
no outgoing calls
no test coverage detected