]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-51244.stderr
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-51244.stderr
CommitLineData
48663c56 1error[E0594]: cannot assign to `*my_ref` which is behind a `&` reference
0731742a 2 --> $DIR/issue-51244.rs:3:5
8faf50e0
XL
3 |
4LL | let ref my_ref @ _ = 0;
48663c56 5 | -------------- help: consider changing this to be a mutable reference: `ref mut my_ref @ _`
532ac7d7 6LL | *my_ref = 0;
48663c56 7 | ^^^^^^^^^^^ `my_ref` is a `&` reference, so the data it refers to cannot be written
8faf50e0
XL
8
9error: aborting due to previous error
10
d9bb1a4e 11For more information about this error, try `rustc --explain E0594`.