2019-10-03 22:14:48 -05:00
|
|
|
error: `impl` item signature doesn't match `trait` item signature
|
2019-10-03 13:41:27 -05:00
|
|
|
--> $DIR/lifetime-mismatch-between-trait-and-impl.rs:6:5
|
|
|
|
|
|
|
|
|
LL | fn foo<'a>(x: &'a i32, y: &'a i32) -> &'a i32 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found fn(&i32, &i32) -> &i32
|
|
|
|
|
|
|
|
|
= note: expected: fn(&i32, &'a i32) -> &'a i32
|
|
|
|
found: fn(&i32, &i32) -> &i32
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|