2012-10-31 20:56:08 +00:00
|
|
|
struct BuildData {
|
2015-01-08 10:54:35 +00:00
|
|
|
foo: isize,
|
2012-10-31 20:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = BuildData {
|
|
|
|
foo: 0,
|
2016-09-16 04:10:32 +00:00
|
|
|
bar: 0
|
|
|
|
//~^ ERROR struct `BuildData` has no field named `bar`
|
2012-10-31 20:56:08 +00:00
|
|
|
};
|
|
|
|
}
|