rust/src/test/ui/mut/mut-pattern-internal-mutability.ast.nll.stderr

27 lines
848 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0384]: cannot assign twice to immutable variable `x`
2018-12-25 09:56:47 -06:00
--> $DIR/mut-pattern-internal-mutability.rs:8:5
2018-08-08 07:28:26 -05:00
|
LL | let &mut x = foo;
| -
| |
| first assignment to `x`
| help: make this binding mutable: `mut x`
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
2018-12-25 09:56:47 -06:00
--> $DIR/mut-pattern-internal-mutability.rs:17:5
2018-08-08 07:28:26 -05:00
|
LL | let &mut ref x = foo;
| ----- borrow of `*foo` occurs here
LL | *foo += 1;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^ assignment to borrowed `*foo` occurs here
LL |
2018-08-08 07:28:26 -05:00
LL | drop(x);
| - borrow later used here
error: aborting due to 2 previous errors
Some errors occurred: E0384, E0506.
For more information about an error, try `rustc --explain E0384`.