summary refs log tree commit diff
path: root/src/test/ui/parser/recover-struct.rs
blob: 500591b2ad138ddd723125b7d805cfe1c5f34086 (plain)
1
2
3
4
5
6
7
8
9
// compile-flags: -Z continue-parse-after-error

fn main() {
    struct Test {
        Very
        Bad //~ ERROR found `Bad`
        Stuff
    }
}