mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 03:07:24 +03:00
80fc9b0ecb
Improve recovery on malformed format call The token following a format expression should be a comma. However, when it is replaced with a similar token (such as a dot), then the corresponding error is emitted, but the token is treated as a comma, and the parsing step continues. r? @petrochenkov