blob: dc227a36566e6d68345cddd6c5340a2156704822 [file] [log] [blame]
error: lifetime may not live long enough
--> $DIR/match-ref-mut-let-invariance.rs:11:9
|
LL | impl<'b> S<'b> {
| -- lifetime `'b` defined here
LL | fn bar<'a>(&'a mut self) -> &'a mut &'a i32 {
| -- lifetime `'a` defined here
LL | let ref mut x = self.0;
LL | x
| ^ returning this value requires that `'a` must outlive `'b`
|
= help: consider adding the following bound: `'a: 'b`
error: aborting due to previous error