Files
rust/tests/ui/suggestions/struct-initializer-comma.fixed

16 lines
225 B
Rust
Raw Normal View History

//@ run-rustfix
2020-07-02 14:32:12 +09:00
pub struct Foo {
pub first: bool,
pub second: u8,
}
fn main() {
let _ = Foo {
//~^ ERROR missing field
first: true,
second: 25
//~^ ERROR expected one of
};
}