| 13 | struct SimpleTask { |
| 14 | struct FinalAwaitable { |
| 15 | bool await_ready() noexcept { |
| 16 | return false; |
| 17 | } |
| 18 | ::std::coroutine_handle<> await_suspend( |
| 19 | ::std::coroutine_handle<>) noexcept { |
| 20 | return awaiter; |
nothing calls this directly
no outgoing calls
no test coverage detected