1 2 3 4 5 6 7 8
struct Foo { bar: u8 } fn main() { let f = Foo { bar: 22 }; f.baz; //~ ERROR no field }