summaryrefslogtreecommitdiffstats
path: root/src/test/ui/structs/struct-duplicate-comma.fixed
blob: c804cf57abaaadb53e3d913ce5ad2a88520da28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-rustfix
// Issue #50974

pub struct Foo {
    pub a: u8,
    pub b: u8
}

fn main() {
    let _ = Foo {
        a: 0,
          //~^ ERROR expected identifier
        b: 42
    };
}