Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
structs
/
struct-fields-shorthand.rs
blob: 1bdcc8315c154eea45fb799d11ffdc89aed28fc0 [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
{
x
:
i32
,
y
:
i32
}
fn
main
()
{
let
(
x
,
y
,
z
)
=
(
0
,
1
,
2
);
let
foo
=
Foo
{
x
,
y
,
z
//~ ERROR struct `Foo` has no field named `z`
};
}