rust/src/test/ui/suggestions/struct-initializer-comma.fixed
2020-07-02 15:18:33 +09:00

15 lines
224 B
Rust

// run-rustfix
pub struct Foo {
pub first: bool,
pub second: u8,
}
fn main() {
let _ = Foo {
//~^ ERROR missing field
first: true,
second: 25
//~^ ERROR expected one of
};
}