struct-duplicate-comma.fixed 189 字节
Newer Older
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
    };
}