Files
rust/src/test/ui/parser/recovered-struct-variant.rs
Esteban Küber 6007e6f649 Do not complain about non-existing fields after parse recovery
When failing to parse struct-like enum variants, the ADT gets recorded
as having no fields. Record that we have actually recovered during
parsing of this variant to avoid complaing about non-existing fields
when actually using it.
2019-03-17 20:09:53 -07: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} => {}
}
}