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