blob: a28179ba241681ae4ab2d54dc09f22d8fbcb8b80 [file] [log] [blame]
// Issue #50636
// run-rustfix
pub struct S {
pub foo: u32, //~ expected `,`, or `}`, found keyword `pub`
// ~^ HELP try adding a comma: ','
pub bar: u32
}
fn main() {
let _ = S { foo: 5, bar: 6 };
}