mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
8 lines
217 B
Text
8 lines
217 B
Text
error: invalid variable declaration
|
|
--> $DIR/issue-100197-mut-let.rs:4:5
|
|
|
|
|
LL | mut let _x = 123;
|
|
| ^^^^^^^ help: switch the order of `mut` and `let`: `let mut`
|
|
|
|
error: aborting due to previous error
|
|
|