os-rust/src/test/ui/async-await/suggest-missing-await.stderr

44 lines
1.3 KiB
Text
Raw Normal View History

error[E0308]: mismatched types
2020-10-22 19:03:36 -07:00
--> $DIR/suggest-missing-await.rs:12:14
|
LL | take_u32(x)
2020-10-21 14:25:09 -07:00
| ^ expected `u32`, found opaque type
|
2021-07-31 12:20:00 -07:00
note: while checking the return type of the `async fn`
--> $DIR/suggest-missing-await.rs:5:24
|
LL | async fn make_u32() -> u32 {
| ^^^ checked the `Output` of this `async fn`, found opaque type
= note: expected type `u32`
found opaque type `impl Future`
2020-10-21 14:25:09 -07:00
help: consider `await`ing on the `Future`
|
LL | take_u32(x.await)
| ++++++
error[E0308]: mismatched types
2020-10-22 19:03:36 -07:00
--> $DIR/suggest-missing-await.rs:22:5
|
LL | dummy()
| ^^^^^^^ expected `()`, found opaque type
|
2021-07-31 12:20:00 -07:00
note: while checking the return type of the `async fn`
--> $DIR/suggest-missing-await.rs:18:18
|
LL | async fn dummy() {}
| ^ checked the `Output` of this `async fn`, found opaque type
= note: expected unit type `()`
found opaque type `impl Future`
2020-10-21 14:25:09 -07:00
help: consider `await`ing on the `Future`
|
LL | dummy().await
| ++++++
help: consider using a semicolon here
2020-10-22 19:03:36 -07:00
|
LL | dummy();
| +
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.