]> git.lizzy.rs Git - rust.git/blob - src/test/ui/liveness/liveness-assign/liveness-assign-imm-local-with-init.ast.nll.stderr
70a6ab3edf80318f925113fc30d9679f7ac40fe6
[rust.git] / src / test / ui / liveness / liveness-assign / liveness-assign-imm-local-with-init.ast.nll.stderr
1 error[E0384]: cannot assign twice to immutable variable `v`
2   --> $DIR/liveness-assign-imm-local-with-init.rs:19:5
3    |
4 LL |     let v: isize = 1; //[ast]~ NOTE first assignment
5    |         -
6    |         |
7    |         first assignment to `v`
8    |         consider changing this to `mut v`
9 ...
10 LL |     v = 2; //[ast]~ ERROR cannot assign twice to immutable variable
11    |     ^^^^^ cannot assign twice to immutable variable
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0384`.