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

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