about summary refs log tree commit diff
path: root/tests/ui/resolve/resolve-inconsistent-names.stderr
AgeCommit message (Collapse)AuthorLines
2025-08-30Avoid unnecessary suggestion in or-patternEsteban Küber-19/+7
2025-08-25On binding not present in all patterns, suggest potential typoEsteban Küber-17/+29
``` 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) => {} | ```
2025-02-14Trim suggestion parts to the subset that is purely additiveMichael Goulet-2/+2
2025-02-14Consider add-prefix replacements tooMichael Goulet-6/+4
2025-02-10Show diff suggestion format on verbose replacementEsteban Küber-4/+6
``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ```
2023-10-02Replace `HashMap` with `IndexMap` in pattern binding resolveNilstrieb-21/+21
It will be iterated over, so we should avoid using `HashMap`.
2023-08-18Bless test changesGary Guo-9/+9
2023-01-30Modify primary span label for E0308Esteban Küber-1/+1
The previous output was unintuitive to users.
2023-01-11Move /src/test to /testsAlbert Larsan-0/+104