We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 531a68c commit 1ed8619Copy full SHA for 1ed8619
src/test/ui/suggestions/issue-51244.nll.stderr
@@ -0,0 +1,11 @@
1
+error[E0594]: cannot assign to `*my_ref` which is behind a `&` reference
2
+ --> $DIR/issue-51244.rs:13:5
3
+ |
4
+LL | let ref my_ref @ _ = 0;
5
+ | -------------- help: consider changing this to be a mutable reference: `ref mut my_ref @ _`
6
+LL | *my_ref = 0; //~ ERROR cannot assign to immutable borrowed content `*my_ref` [E0594]
7
+ | ^^^^^^^^^^^ `my_ref` is a `&` reference, so the data it refers to cannot be written
8
+
9
+error: aborting due to previous error
10
11
+For more information about this error, try `rustc --explain E0594`.
0 commit comments