]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/issue-47388.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / nll / issue-47388.stderr
CommitLineData
136023e0 1error[E0594]: cannot assign to `fancy_ref.num`, which is behind a `&` reference
48663c56 2 --> $DIR/issue-47388.rs:8:5
83c7162d
XL
3 |
4LL | let fancy_ref = &(&mut fancy);
5 | ------------- help: consider changing this to be a mutable reference: `&mut (&mut fancy)`
532ac7d7 6LL | fancy_ref.num = 6;
83c7162d
XL
7 | ^^^^^^^^^^^^^^^^^ `fancy_ref` is a `&` reference, so the data it refers to cannot be written
8
9error: aborting due to previous error
10
60c5eb7d 11For more information about this error, try `rustc --explain E0594`.