about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0229.stderr
AgeCommit message (Collapse)AuthorLines
2025-01-06Normalize each signature input/output in typeck_with_fallback with its own spanMichael Goulet-2/+2
2024-12-07reword trait bound suggestion message to include the boundsEsteban Küber-2/+2
2024-07-17Fix associated item removal suggestionEsteban 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-30Rename HIR `TypeBinding` to `AssocItemConstraint` and related cleanupLeón Orell Valerian Liehr-25/+25
2024-04-16Emit suggestions when equality constraints are wrongly usedGurinder Singh-0/+13
2024-02-14Continue compilation after check_mod_type_wf errorsOli Scherer-1/+12
2024-01-09Avoid silencing relevant follow-up errorsOli Scherer-2/+30
2023-11-24Show number in error message even for one errorNilstrieb-1/+1
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-01-11Move /src/test to /testsAlbert Larsan-0/+9