mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-04 03:07:25 +00:00

For a local pattern with no space between `let` and `(` e.g.: let(_a) = 3; we were previously suggesting this illegal code: let_a =3; After this change the suggestion will instead be: let _a =3; (Note the space after `let`)