mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
8 lines
232 B
Rust
8 lines
232 B
Rust
// 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`
|
|
}
|