2023-06-23 22:00:08 -05:00
|
|
|
error[E0053]: method `foo` has an incompatible type for trait
|
2023-10-24 10:27:02 -05:00
|
|
|
--> $DIR/async-example-desugared-boxed-in-trait.rs:11:5
|
2023-06-23 22:00:08 -05:00
|
|
|
|
|
|
|
|
LL | async fn foo(&self) -> i32 {
|
2023-10-02 16:31:46 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Pin<Box<dyn Future<Output = i32>>>`, found future
|
2023-06-23 22:00:08 -05:00
|
|
|
|
|
|
|
|
note: type in trait
|
2023-10-24 10:27:02 -05:00
|
|
|
--> $DIR/async-example-desugared-boxed-in-trait.rs:7:22
|
2023-06-23 22:00:08 -05:00
|
|
|
|
|
|
|
|
LL | fn foo(&self) -> Pin<Box<dyn Future<Output = i32> + '_>>;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= note: expected signature `fn(&i32) -> Pin<Box<dyn Future<Output = i32>>>`
|
|
|
|
found signature `fn(&i32) -> impl Future<Output = i32>`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0053`.
|