2021-11-16 20:07:23 +00:00
|
|
|
error[E0277]: `()` is not a future
|
2023-04-25 18:59:16 +00:00
|
|
|
--> $DIR/unnecessary-await.rs:9:11
|
2021-11-16 20:07:23 +00:00
|
|
|
|
|
|
|
|
LL | boo().await;
|
2023-04-25 18:59:16 +00:00
|
|
|
| ----- ^^^^^ `()` is not a future
|
2021-11-16 20:07:23 +00:00
|
|
|
| |
|
|
|
|
| this call returns `()`
|
|
|
|
|
|
2024-01-29 18:31:02 +00:00
|
|
|
= help: the trait `Future` is not implemented for `()`, which is required by `(): IntoFuture`
|
2021-11-16 22:06:25 +00:00
|
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
2022-08-15 20:31:37 +00:00
|
|
|
= note: required for `()` to implement `IntoFuture`
|
2021-12-10 03:01:37 +00:00
|
|
|
help: remove the `.await`
|
2021-11-16 20:07:23 +00:00
|
|
|
|
|
|
|
|
LL - boo().await;
|
|
|
|
LL + boo();
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2021-11-16 20:07:23 +00:00
|
|
|
help: alternatively, consider making `fn boo` asynchronous
|
|
|
|
|
|
2021-12-02 23:41:45 +00:00
|
|
|
LL | async fn boo() {}
|
2021-11-16 20:07:23 +00:00
|
|
|
| +++++
|
|
|
|
|
2023-04-27 17:40:55 +00:00
|
|
|
error[E0277]: `()` is not a future
|
|
|
|
--> $DIR/unnecessary-await.rs:28:10
|
|
|
|
|
|
|
|
|
LL | e!().await;
|
|
|
|
| -^^^^^
|
|
|
|
| ||
|
|
|
|
| |`()` is not a future
|
|
|
|
| help: remove the `.await`
|
|
|
|
|
|
2024-01-29 18:31:02 +00:00
|
|
|
= help: the trait `Future` is not implemented for `()`, which is required by `(): IntoFuture`
|
2023-04-27 17:40:55 +00:00
|
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
|
|
|
= note: required for `()` to implement `IntoFuture`
|
|
|
|
|
|
|
|
error[E0277]: `()` is not a future
|
|
|
|
--> $DIR/unnecessary-await.rs:22:15
|
|
|
|
|
|
|
|
|
LL | $expr.await
|
|
|
|
| ^^^^^
|
|
|
|
| |
|
|
|
|
| `()` is not a future
|
|
|
|
| remove the `.await`
|
|
|
|
...
|
|
|
|
LL | f!(());
|
|
|
|
| ------ in this macro invocation
|
|
|
|
|
|
2024-01-29 18:31:02 +00:00
|
|
|
= help: the trait `Future` is not implemented for `()`, which is required by `(): IntoFuture`
|
2023-04-27 17:40:55 +00:00
|
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
|
|
|
= note: required for `()` to implement `IntoFuture`
|
|
|
|
= note: this error originates in the macro `f` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
2023-10-21 11:16:09 +00:00
|
|
|
error[E0277]: `()` is not a future
|
|
|
|
--> $DIR/unnecessary-await.rs:36:20
|
|
|
|
|
|
|
|
|
LL | for x in [] {}.await
|
|
|
|
| -^^^^^
|
|
|
|
| ||
|
|
|
|
| |`()` is not a future
|
|
|
|
| help: remove the `.await`
|
|
|
|
|
|
2024-01-29 18:31:02 +00:00
|
|
|
= help: the trait `Future` is not implemented for `()`, which is required by `(): IntoFuture`
|
2023-10-21 11:16:09 +00:00
|
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
|
|
|
= note: required for `()` to implement `IntoFuture`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2021-11-16 20:07:23 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|