rust/src/test/ui/lifetimes/lifetime-mismatch-between-trait-and-impl.stderr

12 lines
410 B
Plaintext
Raw Normal View History

2019-10-03 22:14:48 -05:00
error: `impl` item signature doesn't match `trait` item signature
--> $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