]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetime-errors/ex3-both-anon-regions-both-are-structs-latebound-regions.nll.stderr
Auto merge of #53134 - alexcrichton:tweak-travis, r=Mark-Simulacrum
[rust.git] / src / test / ui / lifetime-errors / ex3-both-anon-regions-both-are-structs-latebound-regions.nll.stderr
1 warning: not reporting region error due to nll
2   --> $DIR/ex3-both-anon-regions-both-are-structs-latebound-regions.rs:15:12
3    |
4 LL |     x.push(y); //~ ERROR lifetime mismatch
5    |            ^
6
7 error: unsatisfied lifetime constraints
8   --> $DIR/ex3-both-anon-regions-both-are-structs-latebound-regions.rs:15:5
9    |
10 LL | fn foo<'a, 'b>(mut x: Vec<Ref<'a>>, y: Ref<'b>) {
11    |        --  -- lifetime `'b` defined here
12    |        |
13    |        lifetime `'a` defined here
14 LL |     x.push(y); //~ ERROR lifetime mismatch
15    |     ^^^^^^^^^ argument requires that `'b` must outlive `'a`
16
17 error: aborting due to previous error
18