os-rust/src/test/ui/command-line-diagnostics.stderr

12 lines
352 B
Text
Raw Normal View History

2017-11-20 13:13:27 +01:00
error[E0384]: cannot assign twice to immutable variable `x`
--> $DIR/command-line-diagnostics.rs:16:5
|
2018-02-25 02:59:34 +03:00
LL | let x = 42;
2017-11-20 13:13:27 +01:00
| - first assignment to `x`
2018-02-25 02:59:34 +03:00
LL | x = 43;
2017-11-20 13:13:27 +01:00
| ^^^^^^ cannot assign twice to immutable variable
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0384`.