blob: 2892884ebf365208fd343913c2eb011ec05331b7 [file] [log] [blame] [edit]
error[E0594]: cannot assign to `*n`, which is behind a `&` reference
--> $DIR/explicit-mut.rs:7:13
|
LL | *n += 1;
| ^^^^^^^ `n` is a `&` reference, so it cannot be written to
error[E0594]: cannot assign to `*n`, which is behind a `&` reference
--> $DIR/explicit-mut.rs:15:13
|
LL | *n += 1;
| ^^^^^^^ `n` is a `&` reference, so it cannot be written to
error[E0594]: cannot assign to `*n`, which is behind a `&` reference
--> $DIR/explicit-mut.rs:23:13
|
LL | *n += 1;
| ^^^^^^^ `n` is a `&` reference, so it cannot be written to
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0594`.