| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-08-20 | diagnostics :3 | lcnr | -2/+2 | |
| 2025-08-20 | handle opaque types before region inference | lcnr | -3/+3 | |
| 2025-06-24 | Make missing lifetime suggestion verbose | Michael Goulet | -3/+6 | |
| 2025-06-09 | Make E0621 missing lifetime suggestion verbose | Esteban Küber | -3/+5 | |
| ``` error[E0621]: explicit lifetime required in the type of `x` --> $DIR/42701_one_named_and_one_anonymous.rs:10:9 | LL | &*x | ^^^ lifetime `'a` required | help: add explicit lifetime `'a` to the type of `x` | LL | fn foo2<'a>(a: &'a Foo, x: &'a i32) -> &'a i32 { | ++ ``` | ||||
| 2025-06-04 | Replace `elided_named_lifetimes` with `mismatched_lifetime_syntaxes` | Jake Goulding | -10/+1 | |
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -18/+27 | |
| ``` 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-09-24 | be even more precise about "cast" vs "coercion" | Lukas Markeffsky | -1/+1 | |
| 2024-09-24 | replace "cast" with "coercion" where applicable | Lukas Markeffsky | -1/+1 | |
| This changes the remaining span for the cast, because the new `Cast` category has a higher priority (lower `Ord`) than the old `Coercion` category, so we no longer report the region error for the "unsizing" coercion from `*const Trait` to itself. | ||||
| 2024-08-31 | elided_named_lifetimes: bless & add tests | Pavel Grigorenko | -1/+10 | |
| 2024-08-17 | Bless test fallout | Michael Goulet | -3/+3 | |
| 2024-08-06 | Don't arbitrarily choose one upper bound for hidden captured region | Michael Goulet | -7/+2 | |
| 2024-03-21 | Fix bad span for explicit lifetime suggestion | Shoyu Vanilla | -0/+32 | |
| Move verbose logic to a function Minor renaming | ||||
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -14/+14 | |
| 2024-02-07 | Update tests | r0cky | -5/+7 | |
| 2024-01-02 | Adjust compiler tests for unused_tuple_struct_fields -> dead_code | Jake Goulding | -2/+2 | |
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -3/+3 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-11-07 | Apply structured suggestion that allows test to work since 1.64 | Esteban Küber | -0/+37 | |
| Close #73497. | ||||
| 2023-10-08 | remove trailing dots | Ali MJ Al-Nasrawy | -25/+25 | |
| 2023-10-08 | always show and explain sub region | Ali MJ Al-Nasrawy | -168/+84 | |
| 2023-10-08 | improve the suggestion of generic_bound_failure | Ali MJ Al-Nasrawy | -26/+387 | |
| 2023-09-21 | adjust how closure/generator types and rvalues are printed | Ralf Jung | -1/+1 | |
| 2023-03-03 | Label opaque type for 'captures lifetime' error message | Michael Goulet | -1/+3 | |
| 2023-01-11 | Fix invalid syntax in impl Trait parameter type suggestions for E0311 | yanchen4791 | -12/+244 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+520 | |
