2019-06-26 13:48:41 +01:00
|
|
|
error[E0728]: `await` is only allowed inside `async` functions and blocks
|
2021-11-16 22:06:25 +00:00
|
|
|
--> $DIR/issue-62009-1.rs:6:22
|
2019-06-26 13:48:41 +01:00
|
|
|
|
|
|
|
|
LL | fn main() {
|
|
|
|
| ---- this is not `async`
|
|
|
|
LL | async { let (); }.await;
|
2021-11-16 22:06:25 +00:00
|
|
|
| ^^^^^^ only allowed inside `async` functions and blocks
|
2019-06-26 13:48:41 +01:00
|
|
|
|
|
|
|
error[E0728]: `await` is only allowed inside `async` functions and blocks
|
2021-11-16 22:06:25 +00:00
|
|
|
--> $DIR/issue-62009-1.rs:10:6
|
2019-06-26 13:48:41 +01:00
|
|
|
|
|
2021-11-16 00:57:53 +00:00
|
|
|
LL | fn main() {
|
|
|
|
| ---- this is not `async`
|
2019-06-26 13:48:41 +01:00
|
|
|
...
|
2021-11-16 00:57:53 +00:00
|
|
|
LL | }.await;
|
2021-11-16 22:06:25 +00:00
|
|
|
| ^^^^^^ only allowed inside `async` functions and blocks
|
2019-06-26 13:48:41 +01:00
|
|
|
|
|
|
|
error[E0728]: `await` is only allowed inside `async` functions and blocks
|
2021-11-16 22:06:25 +00:00
|
|
|
--> $DIR/issue-62009-1.rs:12:15
|
2019-06-26 13:48:41 +01:00
|
|
|
|
|
|
|
|
LL | fn main() {
|
|
|
|
| ---- this is not `async`
|
|
|
|
...
|
|
|
|
LL | (|_| 2333).await;
|
2021-11-16 22:06:25 +00:00
|
|
|
| ^^^^^^ only allowed inside `async` functions and blocks
|
2019-06-26 13:48:41 +01:00
|
|
|
|
2022-06-27 07:45:35 +02:00
|
|
|
error[E0277]: `[closure@$DIR/issue-62009-1.rs:12:6: 12:9]` is not a future
|
2021-11-16 00:57:53 +00:00
|
|
|
--> $DIR/issue-62009-1.rs:12:15
|
|
|
|
|
|
|
|
|
LL | (|_| 2333).await;
|
2022-09-12 16:54:25 +02:00
|
|
|
| ^^^^^^
|
|
|
|
| |
|
|
|
|
| `[closure@$DIR/issue-62009-1.rs:12:6: 12:9]` is not a future
|
|
|
|
| help: remove the `.await`
|
2021-11-16 00:57:53 +00:00
|
|
|
|
|
2022-08-29 16:53:36 +03:00
|
|
|
= help: the trait `Future` is not implemented for closure `[closure@$DIR/issue-62009-1.rs:12:6: 12:9]`
|
2022-06-27 07:45:35 +02:00
|
|
|
= note: [closure@$DIR/issue-62009-1.rs:12:6: 12:9] must be a future or must implement `IntoFuture` to be awaited
|
2022-08-15 21:31:37 +01:00
|
|
|
= note: required for `[closure@$DIR/issue-62009-1.rs:12:6: 12:9]` to implement `IntoFuture`
|
2021-11-16 00:57:53 +00:00
|
|
|
|
2021-11-16 22:06:25 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2019-06-26 13:48:41 +01:00
|
|
|
|
2019-10-22 08:48:01 +09:00
|
|
|
Some errors have detailed explanations: E0277, E0728.
|
|
|
|
For more information about an error, try `rustc --explain E0277`.
|