]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-40288.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-40288.stderr
CommitLineData
8faf50e0 1error[E0506]: cannot assign to `*refr` because it is borrowed
0731742a 2 --> $DIR/issue-40288.rs:16:5
8faf50e0
XL
3 |
4LL | save_ref(&*refr, &mut out);
48663c56 5 | ------ borrow of `*refr` occurs here
8faf50e0 6...
532ac7d7 7LL | *refr = 3;
8faf50e0 8 | ^^^^^^^^^ assignment to borrowed `*refr` occurs here
48663c56
XL
9...
10LL | println!("{:?}", out[0]);
11 | ------ borrow later used here
8faf50e0
XL
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0506`.