mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 17:25:45 +00:00
11 lines
181 B
Rust
11 lines
181 B
Rust
struct BuildData {
|
|
foo: isize,
|
|
bar: Box<isize>,
|
|
}
|
|
|
|
fn main() {
|
|
let foo = BuildData { //~ ERROR missing field `bar` in initializer of `BuildData`
|
|
foo: 0
|
|
};
|
|
}
|