| 9 | struct executable { static U execute() { co_await T{}; } }; |
| 10 | struct hello_logic { |
| 11 | bool await_ready() const noexcept { return true; } |
| 12 | void await_suspend(std::coroutine_handle<>) const noexcept { } |
| 13 | void await_resume() const noexcept { std::cout << "Hello, world" << std::endl; } |
| 14 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected