2018-03-10 12:55:23 -06:00
|
|
|
error[E0594]: cannot assign through `&`-reference `fancy_ref`
|
|
|
|
--> $DIR/issue-47388.rs:18:5
|
|
|
|
|
|
|
|
|
LL | let fancy_ref = &(&mut fancy);
|
|
|
|
| ------------- help: consider changing this to be a mutable reference: `&mut`
|
2018-03-12 09:44:37 -05:00
|
|
|
LL | fancy_ref.num = 6; //~^ ERROR E0594
|
2018-03-10 12:55:23 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^ cannot assign through `&`-reference
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
If you want more information on this error, try using "rustc --explain E0594"
|