2018-08-08 12:28:26 +00:00
|
|
|
error[E0308]: method not compatible with trait
|
2021-02-08 22:15:45 +00:00
|
|
|
--> $DIR/matching-lifetimes.rs:14:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | fn foo(x: Foo<'b,'a>) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
|
|
|
|
|
|
2022-12-24 23:17:25 +00:00
|
|
|
= note: expected signature `fn(Foo<'a, 'b>)`
|
|
|
|
found signature `fn(Foo<'b, 'a>)`
|
2021-10-05 12:11:51 +00:00
|
|
|
note: the lifetime `'b` as defined here...
|
2021-02-08 22:15:45 +00:00
|
|
|
--> $DIR/matching-lifetimes.rs:13:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl<'a,'b> Tr for Foo<'a,'b> {
|
|
|
|
| ^^
|
2021-10-05 12:11:51 +00:00
|
|
|
note: ...does not necessarily outlive the lifetime `'a` as defined here
|
2021-02-08 22:15:45 +00:00
|
|
|
--> $DIR/matching-lifetimes.rs:13:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl<'a,'b> Tr for Foo<'a,'b> {
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error[E0308]: method not compatible with trait
|
2021-02-08 22:15:45 +00:00
|
|
|
--> $DIR/matching-lifetimes.rs:14:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | fn foo(x: Foo<'b,'a>) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
|
|
|
|
|
|
2022-12-24 23:17:25 +00:00
|
|
|
= note: expected signature `fn(Foo<'a, 'b>)`
|
|
|
|
found signature `fn(Foo<'b, 'a>)`
|
2021-10-05 12:11:51 +00:00
|
|
|
note: the lifetime `'a` as defined here...
|
2021-02-08 22:15:45 +00:00
|
|
|
--> $DIR/matching-lifetimes.rs:13:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl<'a,'b> Tr for Foo<'a,'b> {
|
|
|
|
| ^^
|
2021-10-05 12:11:51 +00:00
|
|
|
note: ...does not necessarily outlive the lifetime `'b` as defined here
|
2021-02-08 22:15:45 +00:00
|
|
|
--> $DIR/matching-lifetimes.rs:13:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl<'a,'b> Tr for Foo<'a,'b> {
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|