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

16 lines
225 B
Plaintext

//@ 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
};
}