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