blob: da42da84acf2ef26a57003e60a2d0d3b37ba6c40 [file] [log] [blame]
// compile-flags: -Z continue-parse-after-error
fn main() {
enum Test {
Very
//~^ ERROR missing comma
Bad(usize)
//~^ ERROR missing comma
Stuff { a: usize }
//~^ ERROR missing comma
Here
}
}