Files
rust/tests/ui/parser/issues/issue-113203.stderr

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

15 lines
240 B
Plaintext
Raw Normal View History

2023-08-07 22:10:21 +08:00
error: incorrect use of `await`
--> $DIR/issue-113203.rs:5:5
|
LL | await {}()
| ^^^^^^^^
|
help: `await` is a postfix operation
|
LL - await {}()
LL + {}.await()
|
2023-08-07 22:10:21 +08:00
error: aborting due to 1 previous error
2023-08-07 22:10:21 +08:00