mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 23:05:53 +00:00
12 lines
179 B
Rust
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`
|
|
};
|
|
}
|