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

17 lines
534 B
Plaintext
Raw Normal View History

2018-12-11 15:49:40 -06:00
error: lifetime may not live long enough
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
2018-11-28 15:05:36 -06:00
help: the following changes may resolve your lifetime errors
|
= help: add bound `'a: 'b`
2018-08-08 07:28:26 -05:00
error: aborting due to previous error