rust/src/test/ui/nll/where_clauses_in_functions.stderr

13 lines
436 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unsatisfied lifetime constraints
2018-12-25 09:56:47 -06:00
--> $DIR/where_clauses_in_functions.rs:13:5
2018-08-08 07:28:26 -05:00
|
LL | fn bar<'a, 'b>(x: &'a u32, y: &'b u32) -> (&'a u32, &'b u32) {
| -- -- lifetime `'b` defined here
| |
| lifetime `'a` defined here
LL | foo(x, y)
| ^^^^^^^^^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
2018-08-08 07:28:26 -05:00
error: aborting due to previous error