about summary refs log tree commit diff
path: root/src/test/ui/methods/issues
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-395/+0
2023-01-05Tweak wording of fn call with wrong number of argsEsteban Küber-1/+1
2022-12-30Suppress errors due to TypeError not coercing with inference variablesMichael Goulet-14/+2
2022-12-27fix #105788, Remove unreasonable help message for auto traityukang-14/+5
2022-12-16fix #105732, Fix ICE calling method on auto traityukang-0/+41
2022-12-10Introduce `with_forced_trimmed_paths`Esteban Küber-5/+5
2022-10-17trivial fix for comments feedbackyukang-10/+10
2022-10-04find the correct lang item for rangesyukang-33/+61
2022-10-04fix #102396, suggest parentheses for possible range methodsyukang-10/+239
2022-07-11Use fake substs to check for `Self: Sized` predicates on method receiversMichael Goulet-0/+59
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