2023-08-07 09:10:21 -05: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 {}()
|
2023-08-07 09:31:32 -05:00
|
|
|
//~^ ERROR incorrect use of `await`
|
2023-08-07 09:10:21 -05:00
|
|
|
}
|