| 16 | Promise() = default; |
| 17 | std::suspend_always initial_suspend() { return {}; } |
| 18 | std::suspend_always final_suspend() noexcept { return {}; } |
| 19 | void unhandled_exception() { std::rethrow_exception(std::current_exception()); } |
| 20 | |
| 21 | std::suspend_always yield_value(const char* value) { |
nothing calls this directly
no outgoing calls
no test coverage detected