rust/tests/ui/impl-trait/in-trait/signature-mismatch.failure.stderr
2023-09-07 00:49:09 +00:00

15 lines
470 B
Plaintext

error[E0623]: lifetime mismatch
--> $DIR/signature-mismatch.rs:79:10
|
LL | &'a self,
| -------- this parameter and the return type are declared with different lifetimes...
...
LL | ) -> impl Future<Output = Vec<u8>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| ...but data from `buff` is returned here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0623`.