rust/tests/source/async_block.rs

8 lines
89 B
Rust
Raw Normal View History

2018-07-29 15:45:31 +00:00
// rustfmt-edition: Edition2018
fn main() {
let x = async {
Ok(())
};
}