]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-51244.stderr
New upstream version 1.30.0~beta.7+dfsg1
[rustc.git] / src / test / ui / issues / issue-51244.stderr
1 error[E0594]: cannot assign to immutable borrowed content `*my_ref`
2 --> $DIR/issue-51244.rs:13:5
3 |
4 LL | let ref my_ref @ _ = 0;
5 | -------------- help: use a mutable reference instead: `ref mut my_ref @ _`
6 LL | *my_ref = 0; //~ ERROR cannot assign to immutable borrowed content `*my_ref` [E0594]
7 | ^^^^^^^^^^^ cannot borrow as mutable
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0594`.