rust/tests/ui/suggestions/issue-96555.stderr

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

67 lines
1.8 KiB
Plaintext
Raw Normal View History

error[E0277]: `()` is not a future
2023-04-25 13:59:16 -05:00
--> $DIR/issue-96555.rs:4:13
|
LL | m::f1().await;
2023-04-25 13:59:16 -05:00
| ------- ^^^^^ `()` is not a future
| |
| this call returns `()`
|
= 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`
help: remove the `.await`
|
LL - m::f1().await;
LL + m::f1();
2022-06-08 12:34:57 -05:00
|
help: alternatively, consider making `fn f1` asynchronous
|
LL | pub async fn f1() {}
| +++++
error[E0277]: `()` is not a future
2023-04-25 13:59:16 -05:00
--> $DIR/issue-96555.rs:5:13
|
LL | m::f2().await;
2023-04-25 13:59:16 -05:00
| ------- ^^^^^ `()` is not a future
| |
| this call returns `()`
|
= 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`
help: remove the `.await`
|
LL - m::f2().await;
LL + m::f2();
2022-06-08 12:34:57 -05:00
|
help: alternatively, consider making `fn f2` asynchronous
|
LL | pub(crate) async fn f2() {}
| +++++
error[E0277]: `()` is not a future
2023-04-25 13:59:16 -05:00
--> $DIR/issue-96555.rs:6:13
|
LL | m::f3().await;
2023-04-25 13:59:16 -05:00
| ------- ^^^^^ `()` is not a future
| |
| this call returns `()`
|
= 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`
help: remove the `.await`
|
LL - m::f3().await;
LL + m::f3();
2022-06-08 12:34:57 -05:00
|
help: alternatively, consider making `fn f3` asynchronous
|
LL | pub async
| +++++
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0277`.