rust/src/test/compile-fail/struct-fields-missing.rs

11 lines
143 B
Rust
Raw Normal View History

struct BuildData {
foo: int,
bar: ~int
}
fn main() {
let foo = BuildData { //~ ERROR missing field: `bar`
foo: 0
};
}