summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issue-70594.rs
blob: 4c8209348b37a9bb5b70dcfbea3b0ed44be89edd (plain)
1
2
3
4
5
6
7
8
// edition:2018

async fn fun() {
    [1; ().await];
    //~^ error: `await` is only allowed inside `async` functions and blocks
}

fn main() {}