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