summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/await-keyword/post_expansion_error.rs
blob: b4c899b0d0295b6b77b0fd45a5b0640dd51ad754 (plain)
1
2
3
4
5
6
7
8
9
10
// edition:2018

macro_rules! r#await {
    () => { println!("Hello, world!") }
}

fn main() {
    await!()
    //~^ ERROR expected expression, found `)`
}