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