rust/tests/target/async_closure.rs
2019-12-03 08:47:25 +09:00

23 lines
321 B
Rust

// rustfmt-edition: 2018
fn main() {
let async_closure = async {
let x = 3;
x
};
let f = async /* comment */ {
let x = 3;
x
};
let g = async /* comment */ move {
let x = 3;
x
};
let f = |x| async {
println!("hello, world");
};
}