2022-08-08 03:21:01 +03:00
|
|
|
error: invalid variable declaration
|
|
|
|
|
--> $DIR/issue-100197-mut-let.rs:4:5
|
|
|
|
|
|
|
|
|
|
|
LL | mut let _x = 123;
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
help: switch the order of `mut` and `let`
|
|
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - mut let _x = 123;
|
|
|
|
|
LL + let mut _x = 123;
|
|
|
|
|
|
|
2022-08-08 03:21:01 +03:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-08-08 03:21:01 +03:00
|
|
|
|