rust/tests/ui/parser/recovered-struct-variant.rs
2023-01-11 09:32:08 +00:00

14 lines
268 B
Rust

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} => {}
}
}