mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
542 B
Plaintext
21 lines
542 B
Plaintext
error: expected pattern, found `let`
|
|
--> $DIR/unnecessary-let.rs:2:9
|
|
|
|
|
LL | for let x of [1, 2, 3] {}
|
|
| ^^^ help: remove the unnecessary `let` keyword
|
|
|
|
error: missing `in` in `for` loop
|
|
--> $DIR/unnecessary-let.rs:2:15
|
|
|
|
|
LL | for let x of [1, 2, 3] {}
|
|
| ^^ help: try using `in` here instead
|
|
|
|
error: expected pattern, found `let`
|
|
--> $DIR/unnecessary-let.rs:7:9
|
|
|
|
|
LL | let 1 => {}
|
|
| ^^^ help: remove the unnecessary `let` keyword
|
|
|
|
error: aborting due to 3 previous errors
|
|
|