about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-52496.stderr
AgeCommit message (Collapse)AuthorLines
2019-01-20Tweak field parse error recoveryEsteban Küber-15/+4
2019-01-20Extend incorrect float literal recovery to account for suffixesEsteban Küber-15/+5
2019-01-20Reword message for incorrect float literalEsteban Küber-2/+2
2019-01-20Recover with suggestion from writing `.42` instead of `0.42`Esteban Küber-11/+19
2019-01-20Recover from parse errors in struct literal fieldsEsteban Küber-0/+50
Attempt to recover from parse errors while parsing a struct's literal fields by skipping tokens until a comma or the closing brace is found. This allows errors in other fields to be reported.