rust/src/test/ui/nll/issue-47388.stderr

11 lines
439 B
Plaintext
Raw Normal View History

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