summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/recovered-struct-variant.rs
blob: 5b195dcc3787849545770910f991ae31a9951950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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} => {}
    }
}