]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs.nll.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-both-are-structs.nll.stderr
CommitLineData
48663c56
XL
1error: lifetime may not live long enough
2 --> $DIR/ex3-both-anon-regions-both-are-structs.rs:6:5
3 |
4LL | fn foo(mut x: Vec<Ref>, y: Ref) {
5 | ----- - has type `Ref<'1>`
6 | |
1b1a35ee 7 | has type `Vec<Ref<'2>>`
48663c56
XL
8LL | x.push(y);
9 | ^^^^^^^^^ argument requires that `'1` must outlive `'2`
10
11error: aborting due to previous error
12