mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
17 lines
505 B
Plaintext
17 lines
505 B
Plaintext
error[E0277]: `()` is not a future
|
|
--> $DIR/issue-101715.rs:11:10
|
|
|
|
|
LL | .await
|
|
| -^^^^^
|
|
| ||
|
|
| |`()` is not a future
|
|
| help: remove the `.await`
|
|
|
|
|
= help: the trait `Future` is not implemented for `()`
|
|
= note: () must be a future or must implement `IntoFuture` to be awaited
|
|
= note: required for `()` to implement `IntoFuture`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|