| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-08-25 | On binding not present in all patterns, suggest potential typo | Esteban Küber | -0/+81 | |
| ``` 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) => {} | ``` | ||||
| 2024-12-12 | Filter empty lines, comments and delimiters from previous to last multiline ↵ | Esteban Küber | -1/+0 | |
| span rendering | ||||
| 2024-02-08 | Continue to borrowck even if there were previous errors | Oli Scherer | -27/+59 | |
| 2023-10-02 | Replace `HashMap` with `IndexMap` in pattern binding resolve | Nilstrieb | -42/+42 | |
| It will be iterated over, so we should avoid using `HashMap`. | ||||
| 2023-08-18 | Bless test changes | Gary Guo | -34/+34 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+242 | |
