2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: the `?` operator can only be applied to values that implement `Try`
|
2020-08-20 07:34:08 +00:00
|
|
|
--> $DIR/issue-61076.rs:42:5
|
2020-05-10 14:34:20 +00:00
|
|
|
|
|
|
|
|
LL | foo()?;
|
2021-11-17 00:16:23 +00:00
|
|
|
| ^^^^^^ the `?` operator cannot be applied to type `impl Future<Output = Result<(), ()>>`
|
2020-05-10 14:34:20 +00:00
|
|
|
|
|
2021-11-17 00:16:23 +00:00
|
|
|
= help: the trait `Try` is not implemented for `impl Future<Output = Result<(), ()>>`
|
2020-10-21 21:25:09 +00:00
|
|
|
help: consider `await`ing on the `Future`
|
|
|
|
|
|
|
|
|
LL | foo().await?;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++
|
2020-05-10 14:34:20 +00:00
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: the `?` operator can only be applied to values that implement `Try`
|
2023-01-22 16:28:23 +00:00
|
|
|
--> $DIR/issue-61076.rs:62:5
|
2020-05-14 15:07:46 +00:00
|
|
|
|
|
|
|
|
LL | t?;
|
2020-10-21 21:25:09 +00:00
|
|
|
| ^^ the `?` operator cannot be applied to type `T`
|
2020-05-14 15:07:46 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Try` is not implemented for `T`
|
2020-10-21 21:25:09 +00:00
|
|
|
help: consider `await`ing on the `Future`
|
|
|
|
|
|
|
|
|
LL | t.await?;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++
|
2020-05-14 15:07:46 +00:00
|
|
|
|
2021-11-17 00:16:23 +00:00
|
|
|
error[E0609]: no field `0` on type `impl Future<Output = Tuple>`
|
2023-01-22 16:28:23 +00:00
|
|
|
--> $DIR/issue-61076.rs:71:26
|
2020-05-30 14:57:12 +00:00
|
|
|
|
|
2020-08-16 12:25:22 +00:00
|
|
|
LL | let _: i32 = tuple().0;
|
2020-10-23 17:54:34 +00:00
|
|
|
| ^ field not available in `impl Future`, but it is available in its `Output`
|
|
|
|
|
|
|
|
|
help: consider `await`ing on the `Future` and access the field of its `Output`
|
|
|
|
|
|
|
|
|
LL | let _: i32 = tuple().await.0;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++
|
2020-05-30 14:57:12 +00:00
|
|
|
|
2021-11-17 00:16:23 +00:00
|
|
|
error[E0609]: no field `a` on type `impl Future<Output = Struct>`
|
2023-01-22 16:28:23 +00:00
|
|
|
--> $DIR/issue-61076.rs:75:28
|
2020-05-30 14:57:12 +00:00
|
|
|
|
|
2020-08-16 12:25:22 +00:00
|
|
|
LL | let _: i32 = struct_().a;
|
2020-10-23 17:54:34 +00:00
|
|
|
| ^ field not available in `impl Future`, but it is available in its `Output`
|
|
|
|
|
|
|
|
|
help: consider `await`ing on the `Future` and access the field of its `Output`
|
|
|
|
|
|
|
|
|
LL | let _: i32 = struct_().await.a;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++
|
2020-05-30 14:57:12 +00:00
|
|
|
|
2021-11-17 00:16:23 +00:00
|
|
|
error[E0599]: no method named `method` found for opaque type `impl Future<Output = Struct>` in the current scope
|
2023-01-22 16:28:23 +00:00
|
|
|
--> $DIR/issue-61076.rs:79:15
|
2020-08-20 07:34:08 +00:00
|
|
|
|
|
|
|
|
LL | struct_().method();
|
2021-11-17 00:16:23 +00:00
|
|
|
| ^^^^^^ method not found in `impl Future<Output = Struct>`
|
2020-10-23 17:54:34 +00:00
|
|
|
|
|
|
|
|
help: consider `await`ing on the `Future` and calling the method on its `Output`
|
|
|
|
|
|
|
|
|
LL | struct_().await.method();
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++
|
2020-08-20 07:34:08 +00:00
|
|
|
|
2020-08-20 10:42:08 +00:00
|
|
|
error[E0308]: mismatched types
|
2023-01-22 16:28:23 +00:00
|
|
|
--> $DIR/issue-61076.rs:88:9
|
2020-08-20 10:42:08 +00:00
|
|
|
|
|
2021-12-15 23:16:21 +00:00
|
|
|
LL | match tuple() {
|
|
|
|
| ------- this expression has type `impl Future<Output = Tuple>`
|
|
|
|
LL |
|
2020-08-20 10:42:08 +00:00
|
|
|
LL | Tuple(_) => {}
|
2023-02-10 18:03:54 +00:00
|
|
|
| ^^^^^^^^ expected future, found `Tuple`
|
2020-08-20 10:42:08 +00:00
|
|
|
|
|
2021-11-17 00:16:23 +00:00
|
|
|
= note: expected opaque type `impl Future<Output = Tuple>`
|
2020-08-20 10:42:08 +00:00
|
|
|
found struct `Tuple`
|
2020-10-23 02:03:36 +00:00
|
|
|
help: consider `await`ing on the `Future`
|
|
|
|
|
|
|
|
|
LL | match tuple().await {
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++
|
2020-08-20 10:42:08 +00:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2020-05-10 14:34:20 +00:00
|
|
|
|
2020-08-20 10:42:08 +00:00
|
|
|
Some errors have detailed explanations: E0277, E0308, E0599, E0609.
|
2020-05-30 14:57:12 +00:00
|
|
|
For more information about an error, try `rustc --explain E0277`.
|