Lines Matching refs:_
24 auto _ = co_await c.multiply(7, 6); in startup() local
25 std::cout << "Should be 42: " << _ << std::endl; in startup()
30 auto _ = co_await c.last_result(); in startup() local
31 std::cout << "Should be 42: " << _ << std::endl; in startup()
41 auto _ = co_await c.last_result(); in startup() local
42 std::cout << "Should be 0: " << _ << std::endl; in startup()
49 auto _ = co_await c.last_result(); in startup() local
50 std::cout << "Should be 1234: " << _ << std::endl; in startup()
58 auto _ = co_await c.owner(); in startup() local
59 std::cout << "Should be 'client': " << _ << std::endl; in startup()
64 auto _ = co_await c.properties(); in startup() local
65 std::cout << "Should be 1234: " << _.last_result << std::endl; in startup()
66 std::cout << "Should be 'client': " << _.owner << std::endl; in startup()