]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/recover-struct.rs
Rollup merge of #56470 - llogiq:process-termination-doctest, r=GuillaumeGomez
[rust.git] / src / test / ui / parser / recover-struct.rs
1 // compile-flags: -Z continue-parse-after-error
2
3 fn main() {
4     struct Test {
5         Very
6         Bad //~ ERROR found `Bad`
7         Stuff
8     }
9 }