]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs-earlybound-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-earlybound-regions.nll.stderr
1 error: unsatisfied lifetime constraints
2   --> $DIR/ex3-both-anon-regions-both-are-structs-earlybound-regions.rs:18: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 ...
9 LL |     x.push(y); //~ ERROR lifetime mismatch
10    |     ^^^^^^^^^ argument requires that `'b` must outlive `'a`
11
12 error: aborting due to previous error
13