about summary refs log tree commit diff
path: root/src/test/ui/parser/issues/issue-87635.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-19/+0
2022-03-22diagnostics: do not suggest `fn foo({ <body> }`Michael Howell-3/+1
Instead of suggesting that the body always replace the last character on the line, presuming it must be a semicolon, the parser should instead check what the last character is, and append the body if it is anything else. Fixes #83104
2021-12-04Do not add `;` to expected tokens list when it's wrongMichael Howell-5/+7
There's a few spots where semicolons are checked for to do error recovery, and should not be suggested (or checked for other stuff). Fixes #87647
2021-11-20Move parser tests to parser/issues subdirectoryBadel2-0/+19
Because the parser directory has already reached the 1000 file limit.