rust/tests/ui/structs/struct-duplicate-comma.fixed

16 lines
190 B
Rust
Raw Normal View History

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