about summary refs log tree commit diff
path: root/src/test/ui/parser/issues/issue-84148-1.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-19/+0
2022-01-14Parse `Ty?` as `Option<Ty>` and provide structured suggestionEsteban Kuber-11/+7
Swift has specific syntax that desugars to `Option<T>` similar to our `?` operator, which means that people might try to use it in Rust. Parse it and gracefully recover.
2021-12-04Do not add `;` to expected tokens list when it's wrongMichael Howell-2/+2
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/+23
Because the parser directory has already reached the 1000 file limit.