9 lines
101 B
Rust
9 lines
101 B
Rust
struct Foo {
|
|
bar: u8
|
|
}
|
|
|
|
fn main() {
|
|
let f = Foo { bar: 22 };
|
|
f.baz; //~ ERROR no field
|
|
}
|