struct Foo {
let x: i32,
//~^ ERROR expected identifier, found keyword
let y: i32,
}
fn main() {
let _ = Foo {
//~^ ERROR missing fields `x` and `y` in initializer of `Foo`
};