2024-02-27 17:30:07 -06:00
|
|
|
error[E0491]: in type `&'a MessageListeners<'_>`, reference has a longer lifetime than the data it references
|
2023-11-16 13:49:07 -06:00
|
|
|
--> $DIR/impl-implied-bounds-compatibility.rs:12:5
|
2022-12-11 15:16:43 -06:00
|
|
|
|
|
|
|
|
LL | fn listeners<'b>(&'b self) -> &'a MessageListeners<'b> {
|
2023-11-16 13:49:07 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-12-11 15:16:43 -06:00
|
|
|
|
|
2024-02-27 17:30:07 -06:00
|
|
|
note: the pointer is valid for the lifetime `'a` as defined here
|
2023-11-16 13:49:07 -06:00
|
|
|
--> $DIR/impl-implied-bounds-compatibility.rs:11:6
|
2023-01-04 14:55:37 -06:00
|
|
|
|
|
2023-11-16 13:49:07 -06:00
|
|
|
LL | impl<'a> MessageListenersInterface for MessageListeners<'a> {
|
|
|
|
| ^^
|
2024-02-27 17:30:07 -06:00
|
|
|
note: but the referenced data is only valid for the lifetime `'c` as defined here
|
2023-11-16 13:49:07 -06:00
|
|
|
--> $DIR/impl-implied-bounds-compatibility.rs:12:5
|
2023-01-04 14:55:37 -06:00
|
|
|
|
|
2023-11-16 13:49:07 -06:00
|
|
|
LL | fn listeners<'b>(&'b self) -> &'a MessageListeners<'b> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
2023-01-04 14:55:37 -06:00
|
|
|
|
2024-02-27 17:30:07 -06:00
|
|
|
For more information about this error, try `rustc --explain E0491`.
|