12 lines
487 B
Plaintext
12 lines
487 B
Plaintext
error[E0594]: cannot assign to data in a `&` reference
|
|
--> $DIR/issue-47388.rs:18:5
|
|
|
|
|
LL | let fancy_ref = &(&mut fancy);
|
|
| ------------- help: consider changing this to be a mutable reference: `&mut`
|
|
LL | fancy_ref.num = 6; //~ ERROR E0594
|
|
| ^^^^^^^^^^^^^^^^^ `fancy_ref` is a `&` reference, so the data it refers to cannot be written
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0594`.
|