blob: 48ca45914c65d3ca440c2e4614b2b9854146ff0c (
plain)
1
2
3
4
5
6
7
8
9
10
|
error[E0384]: cannot assign twice to immutable variable `x`
--> $DIR/command-line-diagnostics.rs:16:5
|
15 | let x = 42;
| - first assignment to `x`
16 | x = 43;
| ^^^^^^ cannot assign twice to immutable variable
error: aborting due to previous error
|