2022-09-12 09:54:25 -05:00
|
|
|
error[E0277]: `()` is not a future
|
2023-04-25 13:59:16 -05:00
|
|
|
--> $DIR/issue-101715.rs:11:10
|
2022-09-12 09:54:25 -05:00
|
|
|
|
|
2023-04-25 14:02:55 -05:00
|
|
|
LL | .await
|
|
|
|
| -^^^^^
|
|
|
|
| ||
|
|
|
|
| |`()` is not a future
|
|
|
|
| help: remove the `.await`
|
2022-09-12 09:54:25 -05:00
|
|
|
|
|
2024-01-29 12:31:02 -06:00
|
|
|
= help: the trait `Future` is not implemented for `()`, which is required by `(): IntoFuture`
|
2022-09-12 09:54:25 -05:00
|
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
|
|
|
= note: required for `()` to implement `IntoFuture`
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-09-12 09:54:25 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|