about summary refs log tree commit diff
path: root/src/test/ui/span/issue-27522.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-12/+0
2019-09-02Refer to "`self` type" instead of "receiver type"Esteban Küber-2/+3
2019-07-16Update the help message on error for self typeLimira-1/+1
2019-04-18hide `--explain` hint if error has no extended infoAndy Russell-1/+0
2019-03-11Update testsVadim Petrochenkov-1/+1
2018-12-25Remove licensesMark Rousskov-1/+1
2018-12-20Refactor and add comments to code in receiver_is_validMichael Hewson-2/+2
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.
2018-03-15Remove unnecessary "`" in error message E0307 (invalid self type).kennytm-1/+1
2018-03-14update testsGuillaume Gomez-1/+1
2018-02-26Update UI testsVadim Petrochenkov-1/+1
2018-02-25Update ui testsGuillaume Gomez-0/+1
2017-11-24Merge cfail and ui tests into ui testsOliver Schneider-1/+1
2017-11-09Don't emit the feature error if it's an invalid self typeMichael Hewson-10/+1
2017-11-08update ui test to new error messageMichael Hewson-5/+14
2017-07-02Revert "Change error count messages"Ariel Ben-Yehuda-1/+1
This reverts commit 5558c64f33446225739c1153b43d2e309bb4f50e.
2017-05-24Change error count messagesMichael Kohl-1/+1
See #33525 for details.
2017-01-17Teach Diagnostics to highlight textEsteban Küber-1/+1
2017-01-04Add test for correct span for typeEsteban Küber-0/+11
Test for #27522.