2017-11-20 06:13:27 -06:00
|
|
|
error[E0384]: cannot assign twice to immutable variable `x`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/command-line-diagnostics.rs:6:5
|
2017-11-20 06:13:27 -06:00
|
|
|
|
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | let x = 42;
|
2024-07-03 16:01:29 -05:00
|
|
|
| - first assignment to `x`
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | x = 43;
|
2017-11-20 06:13:27 -06:00
|
|
|
| ^^^^^^ cannot assign twice to immutable variable
|
2024-07-03 16:01:29 -05:00
|
|
|
|
|
|
|
|
help: consider making this binding mutable
|
|
|
|
|
|
|
|
|
LL | let mut x = 42;
|
|
|
|
| +++
|
2017-11-20 06:13:27 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2017-11-20 06:13:27 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0384`.
|