2018-08-08 07:28:26 -05:00
|
|
|
error[E0384]: cannot assign twice to immutable variable `x`
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/mut-pattern-internal-mutability.rs:5:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let &mut x = foo;
|
|
|
|
| -
|
|
|
|
| |
|
|
|
|
| first assignment to `x`
|
2018-09-12 13:13:40 -05:00
|
|
|
| help: make this binding mutable: `mut x`
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | x += 1;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^ cannot assign twice to immutable variable
|
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*foo` because it is borrowed
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/mut-pattern-internal-mutability.rs:13:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let &mut ref x = foo;
|
|
|
|
| ----- borrow of `*foo` occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | *foo += 1;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^ assignment to borrowed `*foo` occurs here
|
|
|
|
LL | drop(x);
|
|
|
|
| - borrow later used here
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0384, E0506.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0384`.
|