blob: b6424f842648f4b6cd4090c903ea8b36b25176c7 [file] [log] [blame]
error[E0594]: cannot assign to immutable borrowed content `*n`
--> $DIR/explicit-mut.rs:7:13
|
LL | *n += 1;
| ^^^^^^^ cannot borrow as mutable
error[E0594]: cannot assign to immutable borrowed content `*n`
--> $DIR/explicit-mut.rs:15:13
|
LL | *n += 1;
| ^^^^^^^ cannot borrow as mutable
error[E0594]: cannot assign to immutable borrowed content `*n`
--> $DIR/explicit-mut.rs:23:13
|
LL | *n += 1;
| ^^^^^^^ cannot borrow as mutable
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0594`.