about summary refs log tree commit diff
path: root/tests/ui/impl-trait/impl_trait_projections.stderr
AgeCommit message (Collapse)AuthorLines
2025-03-28Fix TAIT & ATPIT feature gating in the presence of anon constsLeón Orell Valerian Liehr-1/+9
2024-10-27Move an impl-Trait check from AST validation to AST loweringLeón Orell Valerian Liehr-54/+16
2024-03-27Use `TraitRef::to_string` sorting in favor of `TraitRef::ord`, as the latter ↵Oli Scherer-8/+8
compares `DefId`s which we need to avoid
2024-01-30Provide more context on derived obligation error primary labelEsteban Küber-2/+2
Expand the primary span of E0277 when the immediate unmet bound is not what the user wrote: ``` error[E0277]: the trait bound `i32: Bar` is not satisfied --> f100.rs:6:6 | 6 | <i32 as Foo>::foo(); | ^^^ the trait `Bar` is not implemented for `i32`, which is required by `i32: Foo` | help: this trait has no implementations, consider adding one --> f100.rs:2:1 | 2 | trait Bar {} | ^^^^^^^^^ note: required for `i32` to implement `Foo` --> f100.rs:3:14 | 3 | impl<T: Bar> Foo for T {} | --- ^^^ ^ | | | unsatisfied trait bound introduced here ``` Fix #40120.
2024-01-09Avoid silencing relevant follow-up errorsOli Scherer-3/+43
2023-01-11When suggesting writing a fully qualified path probe for appropriate typesEsteban Küber-5/+4
Fix #46585.
2023-01-11Move /src/test to /testsAlbert Larsan-0/+34