| 229 | struct __unhandled_stopped_frame : __detail::__synthetic_coro_frame |
| 230 | { |
| 231 | static void __resume(void* __address) noexcept |
| 232 | { |
| 233 | // Make a local copy of the promise since it will go away once we call through |
| 234 | // the __unhandled_stopped_fn_ function pointer. |
| 235 | auto& __self = *static_cast<__unhandled_stopped_frame*>(__address); |
| 236 | STDEXEC::__coroutine_resume_nothrow(__self.__promise_.__coro_.unhandled_stopped()); |
| 237 | } |
| 238 | |
| 239 | struct __promise |
| 240 | { |
nothing calls this directly
no test coverage detected