]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs-latebound-regions.nll.stderr
Change NLL compare mode to borrowck=migrate.
[rust.git] / src / test / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-both-are-structs-latebound-regions.nll.stderr
1 error: unsatisfied lifetime constraints
2   --> $DIR/ex3-both-anon-regions-both-are-structs-latebound-regions.rs:15:5
3    |
4 LL | fn foo<'a, 'b>(mut x: Vec<Ref<'a>>, y: Ref<'b>) {
5    |        --  -- lifetime `'b` defined here
6    |        |
7    |        lifetime `'a` defined here
8 LL |     x.push(y); //~ ERROR lifetime mismatch
9    |     ^^^^^^^^^ argument requires that `'b` must outlive `'a`
10
11 error: aborting due to previous error
12