rustc/tests/ui/structs/struct-fields-too-many.rs
2023-08-02 10:33:26 +02:00

12 lines
179 B
Rust

struct BuildData {
foo: isize,
}
fn main() {
let foo = BuildData {
foo: 0,
bar: 0
//~^ ERROR struct `BuildData` has no field named `bar`
};
}