mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
158 B
Rust
12 lines
158 B
Rust
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
|
|
}
|