]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/issue-54556-wrap-it-up.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / nll / issue-54556-wrap-it-up.stderr
CommitLineData
0bf4aa26
XL
1error[E0506]: cannot assign to `x` because it is borrowed
2 --> $DIR/issue-54556-wrap-it-up.rs:27:5
3 |
4LL | let wrap = Wrap { p: &mut x };
48663c56 5 | ------ borrow of `x` occurs here
0bf4aa26 6...
532ac7d7 7LL | x = 1;
0bf4aa26 8 | ^^^^^ assignment to borrowed `x` occurs here
48663c56
XL
9LL | }
10 | - borrow might be used here, when `foo` is dropped and runs the destructor for type `Foo<'_>`
0bf4aa26
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0506`.