summaryrefslogtreecommitdiffstats
path: root/src/test/ui/structs/struct-duplicate-comma.rs
blob: db2e7cb3d05e6fb6485c602c770eba6125c48306 (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
    };
}