| 50 | } |
| 51 | |
| 52 | void stackful_task_void(experimental::context<task<void>> c) |
| 53 | { |
| 54 | static_assert(experimental::detail::has_await_transform<decltype(c)::promise_type>); |
| 55 | BOOST_CHECK(c.await(this_coro::executor) == c.promise().get_executor()); |
| 56 | } |
| 57 | |
| 58 | CO_TEST_CASE(task_void) |
| 59 | { |
nothing calls this directly
no test coverage detected