2019-06-19 20:55:18 +00:00
|
|
|
error[E0308]: mismatched types
|
2020-10-23 02:03:36 +00:00
|
|
|
--> $DIR/suggest-missing-await.rs:12:14
|
2019-06-19 20:55:18 +00:00
|
|
|
|
|
2019-11-16 02:53:17 +00:00
|
|
|
LL | async fn make_u32() -> u32 {
|
2021-02-15 22:27:36 +00:00
|
|
|
| --- checked the `Output` of this `async fn`, found opaque type
|
2019-11-16 02:53:17 +00:00
|
|
|
...
|
2019-06-19 20:55:18 +00:00
|
|
|
LL | take_u32(x)
|
2020-10-21 21:25:09 +00:00
|
|
|
| ^ expected `u32`, found opaque type
|
2019-06-19 20:55:18 +00:00
|
|
|
|
|
2021-02-15 22:27:36 +00:00
|
|
|
= note: while checking the return type of the `async fn`
|
2019-11-13 22:16:56 +00:00
|
|
|
= note: expected type `u32`
|
2020-09-02 07:40:56 +00:00
|
|
|
found opaque type `impl Future`
|
2020-10-21 21:25:09 +00:00
|
|
|
help: consider `await`ing on the `Future`
|
|
|
|
|
|
|
|
|
LL | take_u32(x.await)
|
|
|
|
| ^^^^^^
|
2019-06-19 20:55:18 +00:00
|
|
|
|
2019-12-04 01:32:50 +00:00
|
|
|
error[E0308]: mismatched types
|
2020-10-23 02:03:36 +00:00
|
|
|
--> $DIR/suggest-missing-await.rs:22:5
|
2019-12-04 01:32:50 +00:00
|
|
|
|
|
2019-12-15 22:05:08 +00:00
|
|
|
LL | async fn dummy() {}
|
2021-02-15 22:27:36 +00:00
|
|
|
| - checked the `Output` of this `async fn`, found opaque type
|
2019-12-15 22:05:08 +00:00
|
|
|
...
|
2019-12-04 01:32:50 +00:00
|
|
|
LL | dummy()
|
|
|
|
| ^^^^^^^ expected `()`, found opaque type
|
|
|
|
|
|
2021-02-15 22:27:36 +00:00
|
|
|
= note: while checking the return type of the `async fn`
|
2019-12-04 01:32:50 +00:00
|
|
|
= note: expected unit type `()`
|
2020-09-02 07:40:56 +00:00
|
|
|
found opaque type `impl Future`
|
2020-10-21 21:25:09 +00:00
|
|
|
help: consider `await`ing on the `Future`
|
2019-12-04 01:32:50 +00:00
|
|
|
|
|
|
|
|
LL | dummy().await
|
2020-10-21 21:25:09 +00:00
|
|
|
| ^^^^^^
|
2021-02-04 21:59:23 +00:00
|
|
|
help: consider using a semicolon here
|
2020-10-23 02:03:36 +00:00
|
|
|
|
|
|
|
|
LL | dummy();
|
|
|
|
| ^
|
2019-12-04 01:32:50 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2019-06-19 20:55:18 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|