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

13 lines
382 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unsatisfied lifetime constraints
--> $DIR/where_clauses_in_functions.rs:23:5
|
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)
| ^^^^^^^^^ argument requires that `'a` must outlive `'b`
error: aborting due to previous error