| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-01-06 | Normalize each signature input/output in typeck_with_fallback with its own span | Michael Goulet | -2/+2 | |
| 2024-12-07 | reword trait bound suggestion message to include the bounds | Esteban Küber | -2/+2 | |
| 2024-07-17 | Fix associated item removal suggestion | Esteban Küber | -6/+9 | |
| We were previously telling people to write what was already there, instead of removal. ``` error[E0229]: associated item constraints are not allowed here --> $DIR/E0229.rs:13:25 | LL | fn baz<I>(x: &<I as Foo<A = Bar>>::A) {} | ^^^^^^^ associated item constraint not allowed here | help: consider removing this associated item binding | LL - fn baz<I>(x: &<I as Foo<A = Bar>>::A) {} LL + fn baz<I>(x: &<I as Foo>::A) {} | ``` | ||||
| 2024-05-30 | Rename HIR `TypeBinding` to `AssocItemConstraint` and related cleanup | León Orell Valerian Liehr | -25/+25 | |
| 2024-04-16 | Emit suggestions when equality constraints are wrongly used | Gurinder Singh | -0/+13 | |
| 2024-02-14 | Continue compilation after check_mod_type_wf errors | Oli Scherer | -1/+12 | |
| 2024-01-09 | Avoid silencing relevant follow-up errors | Oli Scherer | -2/+30 | |
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -1/+1 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+9 | |
