| 76 | } |
| 77 | |
| 78 | void exception_test() |
| 79 | { |
| 80 | boost::asio::coroutine coro; |
| 81 | try { exception_coro(coro); } catch (int) {} |
| 82 | BOOST_ASIO_CHECK(coro.is_complete()); |
| 83 | } |
| 84 | |
| 85 | //------------------------------------------------------------------------------ |
| 86 |
nothing calls this directly
no test coverage detected