]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs-latebound-regions.nll.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-both-are-structs-latebound-regions.nll.stderr
1 error: lifetime may not live long enough
2 --> $DIR/ex3-both-anon-regions-both-are-structs-latebound-regions.rs:6: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);
9 | ^^^^^^^^^ argument requires that `'b` must outlive `'a`
10 |
11 = help: consider adding the following bound: `'b: 'a`
12
13 error: aborting due to previous error
14