about summary refs log tree commit diff
path: root/src/test/ui/traits/trait-bounds-same-crate-name.rs
AgeCommit message (Collapse)AuthorLines
2021-02-09Organize trait test filesBram van den Heuvel-55/+0
2020-01-12Diagnostics should start lowercasevarkor-1/+1
2019-11-24fixup! Add negative tests where the diagnostic message would be wrongTimo Freiberg-3/+37
2019-11-24Add version mismatch help message for unimplemented traitTimo Freiberg-0/+21
Issue #22750 The error reporting for E0277 (the trait `X` is not implemented for `Foo`) now checks whether `Foo` implements a trait with the same path as `X`, which probably means that the programmer wanted to actually use only one version of the trait `X` instead of the two.