#include #include #include #include #include TEST(Race, QueueRaceAndCancel) { async::run(async::race_and_cancel( [] (async::cancellation_token) -> async::result { co_return; }, [] (async::cancellation_token) -> async::result { co_return; } )); ASSERT_TRUE(true); }