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