blob: 5b195dcc3787849545770910f991ae31a9951950 [file] [log] [blame]
enum Foo {
A { a, b: usize }
//~^ ERROR expected `:`, found `,`
}
fn main() {
// no complaints about non-existing fields
let f = Foo::A { a:3, b: 4};
match f {
// no complaints about non-existing fields
Foo::A {a, b} => {}
}
}