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