about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-58712.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-17/+0
2020-01-26Suggest defining type parameter when appropriateEsteban Küber-1/+3
``` error[E0412]: cannot find type `T` in this scope --> file.rs:3:12 | 3 | impl Trait<T> for Struct {} | - ^ not found in this scope | | | help: you might be missing a type parameter: `<T>` ``` Fix #64298.
2019-03-04Elide invalid method receiver error when it contains TyErrEsteban Küber-0/+15
Fix #58712.