about summary refs log tree commit diff
path: root/tests/ui/resolve/resolve-inconsistent-names.rs
AgeCommit message (Collapse)AuthorLines
2025-08-30Avoid unnecessary suggestion in or-patternEsteban Küber-2/+0
2025-08-25On binding not present in all patterns, suggest potential typoEsteban Küber-2/+4
``` error[E0408]: variable `Ban` is not bound in all patterns --> f12.rs:9:9 | 9 | (Foo,Bar)|(Ban,Foo) => {} | ^^^^^^^^^ --- variable not in all patterns | | | pattern doesn't bind `Ban` | help: you might have meant to use the similarly named previously used binding `Bar` | 9 - (Foo,Bar)|(Ban,Foo) => {} 9 + (Foo,Bar)|(Bar,Foo) => {} | ```
2023-01-11Move /src/test to /testsAlbert Larsan-0/+36