2018-08-06 11:33:05 -05:00
|
|
|
error: unsatisfied lifetime constraints
|
2017-11-22 16:39:46 -06:00
|
|
|
--> $DIR/region-lbr1-does-not-outlive-ebr2.rs:19:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo<'a, 'b>(x: &'a u32, y: &'b u32) -> &'b u32 {
|
2018-08-06 11:33:05 -05:00
|
|
|
| -- -- lifetime `'b` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | &*x
|
2018-08-07 15:48:50 -05:00
|
|
|
| ^^^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
|
2017-11-22 16:39:46 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|