rust/src/test/ui/error-codes/ex-E0612.rs
2018-12-25 21:08:33 -07:00

6 lines
96 B
Rust

struct Foo(u32);
fn main() {
let y = Foo(0);
y.1; //~ ERROR no field `1` on type `Foo`
}