rustc/tests/ui/structs/struct-duplicate-comma.fixed
2024-06-21 09:39:33 +02:00

16 lines
190 B
Plaintext

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