Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
error-codes
/
ex-E0612.rs
blob: c8ea53ae9d830c70543415bcb223b0f1a7b47916 [
file
]
struct
Foo
(
u32
);
fn
main
()
{
let
y
=
Foo
(
0
);
y
.
1
;
//~ ERROR no field `1` on type `Foo`
}