mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
18 lines
625 B
Plaintext
18 lines
625 B
Plaintext
error: lifetime may not live long enough
|
|
--> $DIR/regions-free-region-ordering-incorrect.rs:15:9
|
|
|
|
|
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 | | }
|
|
| |_________^ method was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
|
|
|
|
|
= help: consider adding the following bound: `'a: 'b`
|
|
|
|
error: aborting due to 1 previous error
|
|
|