rust/tests/ui/async-await/issue-101715.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
505 B
Plaintext
Raw Normal View History

error[E0277]: `()` is not a future
2023-04-25 18:59:16 +00:00
--> $DIR/issue-101715.rs:11:10
|
2023-04-25 19:02:55 +00:00
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`.