about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-77218.rs
AgeCommit message (Collapse)AuthorLines
2021-11-25On type mismatch caused by assignment, point at assigneeEsteban Küber-11/+0
* Do not emit unnecessary E0308 after E0070 * Show fewer errors on `while let` missing `let` * Hide redundant E0308 on `while let` missing `let` * Point at binding definition when possible on invalid assignment * do not point at closure twice * do not suggest `if let` for literals in lhs * account for parameter types
2020-11-11Implement destructuring assignment for structs and slicesFabian Zaiser-3/+7
Co-authored-by: varkor <github@varkor.com>
2020-10-25Tweak `if let` suggestion to be more liberal with suggestion and to not ICEEsteban Küber-0/+7
Fix #77218. Fix #77238.