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