about summary refs log tree commit diff
path: root/src/test/ui/span/issue-27522.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-9/+0
2019-09-02Refer to "`self` type" instead of "receiver type"Esteban Küber-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-20Refactor and add comments to code in receiver_is_validMichael Hewson-1/+1
also updated some error messages removed the code manually checking for `receiver_ty: Deref<Target=self_ty>`, in favour of using autoderef but only doing one iteration. This will cause error messages to be more consistent. Before, a "mismatched method receiver" error would be emitted when `receiver_ty` was valid except for a lifetime parameter, but only when `feature(arbitrary_self_types)` was enabled, and without the feature flag the error would be "uncoercible receiver". Now it emits "mismatched method receiver" in both cases.
2017-11-24Merge cfail and ui tests into ui testsOliver Schneider-1/+1
2017-01-04Add test for correct span for typeEsteban Küber-0/+19
Test for #27522.