rust/src/test/ui/structs/struct-fields-shorthand.rs
2019-04-22 16:57:01 +01:00

11 lines
173 B
Rust

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`
};
}