Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct BuildData {
foo: isize,
}
fn main() {
let foo = BuildData {
foo: 0,
bar: 0
//~^ ERROR struct `BuildData` has no field named `bar`
};