| 20 | |
| 21 | using handle_type = std::coroutine_handle<promise_type>; |
| 22 | my_resumable(handle_type h) : m_handle(h) {} |
| 23 | ~my_resumable() { if (m_handle) m_handle.destroy(); } |
| 24 | my_resumable(my_resumable&& other) = delete; |
| 25 | handle_type m_handle; |
nothing calls this directly
no outgoing calls
no test coverage detected