| 60 | |
| 61 | STDEXEC_ATTRIBUTE(always_inline) |
| 62 | void __coroutine_destroy_nothrow(void* __address) noexcept |
| 63 | { |
| 64 | STDEXEC_TRY |
| 65 | { |
| 66 | __builtin_coro_destroy(__address); |
| 67 | } |
| 68 | STDEXEC_CATCH_ALL |
| 69 | { |
| 70 | __std::unreachable(); |
no outgoing calls
no test coverage detected