mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
dd557c988f
Separate `RemoveLet` span into primary span for `let` and removal suggestion span for `let `, so that primary span does not include whitespace. Fixes: #133031 Signed-off-by: Tyrone Wu <wudevelops@gmail.com>
38 lines
758 B
Plaintext
38 lines
758 B
Plaintext
error: expected pattern, found `let`
|
|
--> $DIR/unnecessary-let.rs:4:9
|
|
|
|
|
LL | for let _x of [1, 2, 3] {}
|
|
| ^^^
|
|
|
|
|
help: remove the unnecessary `let` keyword
|
|
|
|
|
LL - for let _x of [1, 2, 3] {}
|
|
LL + for _x of [1, 2, 3] {}
|
|
|
|
|
|
|
error: missing `in` in `for` loop
|
|
--> $DIR/unnecessary-let.rs:4:16
|
|
|
|
|
LL | for let _x of [1, 2, 3] {}
|
|
| ^^
|
|
|
|
|
help: try using `in` here instead
|
|
|
|
|
LL | for let _x in [1, 2, 3] {}
|
|
| ~~
|
|
|
|
error: expected pattern, found `let`
|
|
--> $DIR/unnecessary-let.rs:9:9
|
|
|
|
|
LL | let 1 => {}
|
|
| ^^^
|
|
|
|
|
help: remove the unnecessary `let` keyword
|
|
|
|
|
LL - let 1 => {}
|
|
LL + 1 => {}
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|