| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-04-10 | replace `//@ compile-flags: --edition` with `//@ edition` | Pietro Albini | -1/+2 | |
| 2025-02-14 | Trim suggestion parts to the subset that is purely additive | Michael Goulet | -2/+2 | |
| 2025-02-14 | Consider add-prefix replacements too | Michael Goulet | -6/+4 | |
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban 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; | ``` | ||||
| 2024-12-13 | Suggest using deref in patterns | uellenberg | -0/+10 | |
| Fixes #132784 | ||||
| 2024-11-23 | Update tests for new TRPL chapter order | Chris Krycho | -1/+1 | |
| 2024-11-16 | Reword suggestion message | Esteban Küber | -1/+1 | |
| 2024-07-04 | Tweak slice and as_deref suggestion span | Esteban Küber | -3/+6 | |
| Use multispan suggestion. | ||||
| 2024-06-20 | Fix `...` in multline code-skips in suggestions | Esteban Küber | -1/+1 | |
| When we have long code skips, we write `...` in the line number gutter. For suggestions, we were "centering" the `...` with the line, but that was consistent with what we do in every other case. | ||||
| 2024-04-12 | Suppress erroneous suggestion | Alan Egerton | -0/+21 | |
| The suggestion to use `let else` with an uninitialized refutable `let` statement was erroneous: `let else` cannot be used with deferred initialization. | ||||
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -26/+26 | |
| 2023-12-07 | recurse into refs when comparing tys for diagnostics | jyn | -4/+4 | |
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -10/+10 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-06-08 | Peel borrows before suggesting as_ref/as_deref | Michael Goulet | -4/+6 | |
| 2023-06-08 | More robust as_ref/as_deref suggestions | Michael Goulet | -0/+16 | |
| 2023-03-01 | recover from for-else and while-else | y21 | -22/+3 | |
| 2023-02-01 | Rollup merge of #107487 - edward-shen:edward-shen/107213-round-2, r=estebank | Matthias Krüger | -3/+3 | |
| Make the "extra if in let...else block" hint a suggestion Changes the hint to a suggestion, suggested in #107213. r? ```@estebank``` | ||||
| 2023-01-30 | Make the "extra if in let...else block" hint a suggestion | Edward Shen | -3/+3 | |
| 2023-01-30 | Modify primary span label for E0308 | Esteban Küber | -14/+14 | |
| The previous output was unintuitive to users. | ||||
| 2023-01-23 | Add suggestion to remove if in let...else block | Edward Shen | -0/+25 | |
| Adds an additional hint to failures where we encounter an else keyword while we're parsing an if-let block. This is likely that the user has accidentally mixed if-let and let...else together. | ||||
| 2023-01-11 | Change `src/test` to `tests` in source files, fix tidy and tests | Albert Larsan | -1/+1 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+1784 | |
