DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb12u3 / tests / ui / error-codes / E0609.rs
123456789101112
struct Foo { x: u32, } struct Bar; fn main() { let x = Foo { x: 0 }; let _ = x.foo; //~ ERROR E0609 let y = Bar; y.1; //~ ERROR E0609 }