rust/tests/ui/structs/struct-fields-missing.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
181 B
Rust
Raw Normal View History

struct BuildData {
foo: isize,
bar: Box<isize>,
}
fn main() {
let foo = BuildData { //~ ERROR missing field `bar` in initializer of `BuildData`
foo: 0
};
}