mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-23 22:05:31 +03:00
4e2b5d1f54
Add suggestion to remove if in let..else block Adds an additional hint to failures where we encounter an else keyword while we're parsing an if-let expression. This is likely that the user has accidentally mixed if-let and let..else together. Fixes #103791.