rust/tests/target/async_block.rs

36 lines
504 B
Rust
Raw Normal View History

// rustfmt-edition: 2018
2018-07-29 08:45:31 -07:00
fn main() {
let x = async { Ok(()) };
}
2018-07-29 17:20:11 -07:00
fn baz() {
// test
let x = async {
// async blocks are great
Ok(())
};
let y = async { Ok(()) }; // comment
2019-03-20 18:18:02 +01:00
spawn(a, async move {
action();
Ok(())
});
spawn(a, async move || {
action();
Ok(())
});
spawn(a, static async || {
action();
Ok(())
});
spawn(a, static async move || {
action();
Ok(())
});
2018-07-29 17:20:11 -07:00
}