| 102 | }; |
| 103 | |
| 104 | void run_throwing_generator_test() |
| 105 | { |
| 106 | boost::asio::io_context ctx; |
| 107 | boost::asio::co_spawn(ctx, throwing_generator_test(), boost::asio::detached); |
| 108 | ctx.run(); |
| 109 | } |
| 110 | |
| 111 | boost::asio::experimental::coro<int(int)> throwing_stacked( |
| 112 | boost::asio::any_io_executor exec, int &val, |
nothing calls this directly
no test coverage detected