blob: db2e7cb3d05e6fb6485c602c770eba6125c48306 [file] [log] [blame]
// run-rustfix
// Issue #50974
pub struct Foo {
pub a: u8,
pub b: u8
}
fn main() {
let _ = Foo {
a: 0,,
//~^ ERROR expected identifier
b: 42
};
}