| 270 | nullptr}; |
| 271 | |
| 272 | inline auto __coroutine_destroy_and_continue(__std::coroutine_handle<> __destroy, // |
| 273 | __std::coroutine_handle<> __continue) noexcept // |
| 274 | -> __std::coroutine_handle<> |
| 275 | { |
| 276 | __destroy_and_continue_frame::value.__promise_.__destroy_ = __destroy; |
| 277 | __destroy_and_continue_frame::value.__promise_.__continue_ = __continue; |
| 278 | return __std::coroutine_handle<>::from_address(&__destroy_and_continue_frame::value); |
| 279 | } |
| 280 | |
| 281 | inline auto __coroutine_unhandled_stopped(__coroutine_handle<> __coro) noexcept // |
| 282 | -> __std::coroutine_handle<> |
no test coverage detected