2019-02-05 02:03:39 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-58053.rs:4:33
|
2019-02-05 02:03:39 -06:00
|
|
|
|
|
|
|
|
LL | let f = |x: &i32| -> &i32 { x };
|
2020-09-07 23:35:24 -05:00
|
|
|
| - - ^ returning this value requires that `'1` must outlive `'2`
|
2019-02-05 02:03:39 -06:00
|
|
|
| | |
|
2020-09-07 23:35:24 -05:00
|
|
|
| | let's call the lifetime of this reference `'2`
|
2019-02-05 02:03:39 -06:00
|
|
|
| let's call the lifetime of this reference `'1`
|
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-58053.rs:8:25
|
2019-02-05 02:03:39 -06:00
|
|
|
|
|
|
|
|
LL | let g = |x: &i32| { x };
|
|
|
|
| - - ^ returning this value requires that `'1` must outlive `'2`
|
|
|
|
| | |
|
|
|
|
| | return type of closure is &'2 i32
|
|
|
|
| let's call the lifetime of this reference `'1`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|