Files
rust/tests/ui/parser/issue-113203.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
307 B
Rust
Raw Normal View History

2023-08-07 22:10:21 +08:00
// 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 `await` is only allowed inside `async` functions and blocks
//~| ERROR incorrect use of `await`
}