rust/src/test/ui/nll/closure-requirements/region-lbr1-does-not-outlive-ebr2.stderr

13 lines
420 B
Plaintext
Raw Normal View History

error: unsatisfied lifetime constraints
--> $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 {
| -- -- 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`
error: aborting due to previous error