blob: 45e3014f22e20f37447aba32cd27e6fe9656efe1 [file] [log] [blame]
struct Foo {
x: i32,
y: i32
}
fn main() {
let (x, y, z) = (0, 1, 2);
let foo = Foo {
x, y, z //~ ERROR struct `Foo` has no field named `z`
};
}