| 191 | } |
| 192 | |
| 193 | void test_nested_post_loop() |
| 194 | { |
| 195 | boost::asio::io_context ctx(1); |
| 196 | int count = 0; |
| 197 | nested_post_loop(ctx, [&](int i){ count = i; }); |
| 198 | ctx.run(); |
| 199 | BOOST_ASIO_CHECK(count == 100); |
| 200 | } |
| 201 | |
| 202 | template <typename CompletionToken> |
| 203 | auto post_loop_return_1_0(boost::asio::io_context& ctx, CompletionToken&& token) |
nothing calls this directly
no test coverage detected