about summary refs log tree commit diff
path: root/src/test/ui/continue-after-missing-main.rs
AgeCommit message (Collapse)AuthorLines
2022-05-08Move some tests to more reasonable placesCaio-30/+0
2022-03-05Do not point at whole file missing `fn main`Esteban Kuber-2/+2
Only point at the end of the crate. We could try making it point at the beginning of the crate, but that is confused with `DUMMY_SP`, causing the output to be *worse*. This change will make it so that VSCode will *not* underline the whole file when `main` is missing, so other errors will be visible.
2019-11-03Avoid mixing error patterns with error annotationsTomasz Miąsko-3/+1
When both error patterns and error annotations are present in an ui test, only error patterns are validated against the output. Replace the error pattern with an error annotation to avoid silently ignoring the other error annotation.
2019-04-11Continue evaluating after missing mainEsteban Küber-0/+32