| 51 | } |
| 52 | |
| 53 | void test_throw_first() |
| 54 | { |
| 55 | try |
| 56 | { |
| 57 | throw_first(boost::asio::detached); |
| 58 | BOOST_ASIO_CHECK(0); |
| 59 | } |
| 60 | catch (int) |
| 61 | { |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | template <typename CompletionToken> |
| 66 | auto throw_after_await(boost::asio::io_context& ctx, CompletionToken&& token) |
nothing calls this directly
no test coverage detected