We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
let_value
1 parent c744385 commit 65d1ff5Copy full SHA for 65d1ff5
tests/beman/execution/exec-let.test.cpp
@@ -109,8 +109,11 @@ auto test_let_value_allocator() -> void {
109
}
110
111
auto test_let_value_env() -> void {
112
- ex::sync_wait(ex::just() | ex::let_value([] { return ex::read_env(ex::get_scheduler); }) |
113
- ex::then([](auto s) { static_assert(ex::scheduler<decltype(s)>); }));
+ ex::sync_wait(
+ ex::just()
114
+ | ex::let_value([]{ return ex::read_env(ex::get_scheduler); })
115
+ | ex::then([](auto s){ static_assert(ex::scheduler<decltype(s)>); })
116
+ );
117
118
} // namespace
119
0 commit comments