Skip to content

Commit d49cc46

Browse files
committed
add nll stderr
1 parent 3fa7b5a commit d49cc46

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0594]: cannot assign to data in 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: `&mut ef my_ref @ _`
6+
LL | *my_ref = 0; //~ ERROR cannot assign to immutable borrowed content `*my_ref` [E0594]
7+
| ^^^^^^^^^^^
8+
9+
error: aborting due to previous error
10+
11+
For more information about this error, try `rustc --explain E0594`.

0 commit comments

Comments
 (0)