rust/src/test/ui/assign-imm-local-twice.ast.stderr

13 lines
347 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0384]: cannot assign twice to immutable variable `v`
2018-12-25 09:56:47 -06:00
--> $DIR/assign-imm-local-twice.rs:11:5
2018-08-08 07:28:26 -05:00
|
LL | v = 1;
2018-08-08 07:28:26 -05:00
| ----- first assignment to `v`
...
LL | v = 2;
2018-08-08 07:28:26 -05:00
| ^^^^^ cannot assign twice to immutable variable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0384`.