]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/where_clauses_in_functions.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / nll / where_clauses_in_functions.stderr
1 error: unsatisfied lifetime constraints
2   --> $DIR/where_clauses_in_functions.rs:23:5
3    |
4 LL | fn bar<'a, 'b>(x: &'a u32, y: &'b u32) -> (&'a u32, &'b u32) {
5    |        --  -- lifetime `'b` defined here
6    |        |
7    |        lifetime `'a` defined here
8 LL |     foo(x, y)
9    |     ^^^^^^^^^ argument requires that `'a` must outlive `'b`
10
11 error: aborting due to previous error
12