1
Fork 0
rust/src/test/ui/async-await/suggest-missing-await.stderr

148 lines
4.7 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`
2021-11-16 16:16:23 -08:00
found opaque type `impl Future<Output = u32>`
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 `()`
2021-11-16 16:16:23 -08:00
found opaque type `impl Future<Output = ()>`
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();
| +
2021-11-15 22:51:20 -08:00
error[E0308]: `if` and `else` have incompatible types
--> $DIR/suggest-missing-await.rs:35:9
|
LL | let _x = if true {
| ______________-
LL | | dummy()
| | ------- expected because of this
LL | |
LL | | } else {
LL | | dummy().await
| | ^^^^^^^^^^^^^ expected opaque type, found `()`
LL | |
LL | | };
| |_____- `if` and `else` have incompatible types
|
2021-11-16 16:16:23 -08:00
= note: expected type `impl Future<Output = ()>`
2021-11-15 22:51:20 -08:00
found unit type `()`
help: consider `await`ing on the `Future`
|
LL | dummy().await
| ++++++
error[E0308]: `match` arms have incompatible types
--> $DIR/suggest-missing-await.rs:45:14
|
LL | let _x = match 0usize {
| ______________-
LL | | 0 => dummy(),
2021-11-16 16:16:23 -08:00
| | ------- this is found to be of type `impl Future<Output = ()>`
2021-11-15 22:51:20 -08:00
LL | | 1 => dummy(),
2021-11-16 16:16:23 -08:00
| | ------- this is found to be of type `impl Future<Output = ()>`
2021-11-15 22:51:20 -08:00
LL | | 2 => dummy().await,
| | ^^^^^^^^^^^^^ expected opaque type, found `()`
LL | |
LL | | };
| |_____- `match` arms have incompatible types
|
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`, expected opaque type
2021-11-16 16:16:23 -08:00
= note: expected opaque type `impl Future<Output = ()>`
2021-11-15 22:51:20 -08:00
found unit type `()`
help: consider `await`ing on the `Future`
|
LL ~ 0 => dummy().await,
LL ~ 1 => dummy().await,
|
error[E0308]: mismatched types
--> $DIR/suggest-missing-await.rs:53:9
|
LL | () => {}
| ^^ expected opaque type, found `()`
|
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`, expected opaque type
2021-11-16 16:16:23 -08:00
= note: expected opaque type `impl Future<Output = ()>`
2021-11-15 22:51:20 -08:00
found unit type `()`
help: consider `await`ing on the `Future`
|
LL | let _x = match dummy().await {
| ++++++
2021-11-17 21:38:04 -08:00
error[E0308]: mismatched types
--> $DIR/suggest-missing-await.rs:67:9
|
LL | Ok(_) => {}
| ^^^^^ expected opaque type, found enum `Result`
|
note: while checking the return type of the `async fn`
--> $DIR/suggest-missing-await.rs:57:28
|
LL | async fn dummy_result() -> Result<(), ()> {
| ^^^^^^^^^^^^^^ checked the `Output` of this `async fn`, expected opaque type
= note: expected opaque type `impl Future`
found enum `Result<_, _>`
help: consider `await`ing on the `Future`
|
LL | match dummy_result().await {
| ++++++
error[E0308]: mismatched types
--> $DIR/suggest-missing-await.rs:69:9
|
LL | Err(_) => {}
| ^^^^^^ expected opaque type, found enum `Result`
|
note: while checking the return type of the `async fn`
--> $DIR/suggest-missing-await.rs:57:28
|
LL | async fn dummy_result() -> Result<(), ()> {
| ^^^^^^^^^^^^^^ checked the `Output` of this `async fn`, expected opaque type
= note: expected opaque type `impl Future`
found enum `Result<_, _>`
help: consider `await`ing on the `Future`
|
LL | match dummy_result().await {
| ++++++
error: aborting due to 7 previous errors
For more information about this error, try `rustc --explain E0308`.