summary refs log tree commit diff
path: root/src/test/ui/methods/issues
AgeCommit message (Collapse)AuthorLines
2022-04-24diagnostics: regression test for <usize as Iterator>::revMichael Howell-0/+20
Closes #90315
2022-03-11Add regression test for `<i32 as Iterator>::count`Michael Howell-0/+17
Fixes #84495
2022-03-09diagnostics: use rustc_on_unimplemented to recommend `[].iter()`Michael Howell-0/+22
To make this work, the `#[rustc_on_unimplemented]` data needs to be used to report method resolution errors, which is most of what this commit does. Fixes #94581