2018-06-12 18:01:48 +02:00
|
|
|
error[E0594]: cannot assign to `fancy_ref.num` which is behind a `&` reference
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-47388.rs:9:5
|
2018-03-11 00:25:23 +05:30
|
|
|
|
|
|
|
|
LL | let fancy_ref = &(&mut fancy);
|
2018-04-13 21:58:42 +08:00
|
|
|
| ------------- help: consider changing this to be a mutable reference: `&mut (&mut fancy)`
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fancy_ref.num = 6;
|
2018-04-07 10:54:13 +05:30
|
|
|
| ^^^^^^^^^^^^^^^^^ `fancy_ref` is a `&` reference, so the data it refers to cannot be written
|
2018-03-11 00:25:23 +05:30
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|