about summary refs log tree commit diff
path: root/src/test/ui/parser/mismatched-braces/missing-close-brace-in-struct.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-13/+0
2020-08-13Recover gracefully from `struct ` parse errorsEsteban Küber-1/+0
2020-01-03tweak wording of mismatched delimiter errorsAndy Russell-1/+1
2019-10-30Do not complain about missing `fn main()` in some casesEsteban Küber-1/+1
2019-10-30Reduce ammount of errors given unclosed delimiterEsteban Küber-0/+14
When in a file with a non-terminated item, catch the error and consume the block instead of trying to recover it more granularly in order to reduce the amount of unrelated errors that would be fixed after adding the missing closing brace. Also point out the possible location of the missing closing brace.