rust/tests/ui/async-await/await-keyword/post_expansion_error.rs
2023-01-11 09:32:08 +00:00

11 lines
156 B
Rust

// edition:2018
macro_rules! r#await {
() => { println!("Hello, world!") }
}
fn main() {
await!()
//~^ ERROR expected expression, found `)`
}