blob: 9bd9434a3b59dc84a07546e2a46f4d96033e140a [file] [log] [blame]
//@ run-rustfix
pub struct Foo {
pub first: bool,
pub second: u8,
}
fn main() {
let _ = Foo {
first: true,
second: 25
//~^ ERROR expected one of
};
}