rust/tests/ui/regions/regions-free-region-ordering-incorrect.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
636 B
Plaintext
Raw Normal View History

error: lifetime may not live long enough
2022-04-01 17:13:25 +00:00
--> $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 | | }
| |_________^ associated function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
2019-10-27 14:39:14 +00:00
|
= help: consider adding the following bound: `'a: 'b`
error: aborting due to previous error