| 65 | } |
| 66 | |
| 67 | void stack_test() |
| 68 | { |
| 69 | bool done = false; |
| 70 | boost::asio::io_context ctx; |
| 71 | auto k = main_stack_coro(ctx, done); |
| 72 | k.async_resume(boost::asio::detached); |
| 73 | ctx.run(); |
| 74 | BOOST_ASIO_CHECK(done); |
| 75 | } |
| 76 | |
| 77 | } // namespace coro |
| 78 |
nothing calls this directly
no test coverage detected