rust/src/test/ui/command-line-diagnostics.stderr
2017-11-24 11:32:35 +01:00

11 lines
284 B
Plaintext

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