blob: 1103251c140389cb5081b63d24fd8c8865137be7 (
plain)
1
2
3
4
5
6
7
|
// Checks what happens when we attempt to use the await keyword as a prefix. Span
// incorrectly emitted an `.await` in E0277 which does not exist
// edition:2018
fn main() {
await {}()
//~^ ERROR incorrect use of `await`
}
|