2019-01-27 05:03:21 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/regions-free-region-ordering-incorrect.rs:15:9
|
2019-01-27 05:03:21 -06:00
|
|
|
|
|
|
|
|
LL | impl<'b, T> Node<'b, T> {
|
|
|
|
| -- lifetime `'b` defined here
|
|
|
|
LL | fn get<'a>(&'a self) -> &'b T {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
LL | / match self.next {
|
|
|
|
LL | | Some(ref next) => next.get(),
|
|
|
|
LL | | None => &self.val
|
|
|
|
LL | | }
|
2023-02-21 15:11:08 -06:00
|
|
|
| |_________^ method was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
|
2019-10-27 09:39:14 -05:00
|
|
|
|
|
|
|
|
= help: consider adding the following bound: `'a: 'b`
|
2019-01-27 05:03:21 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2019-01-27 05:03:21 -06:00
|
|
|
|