Sign in
rust
/
rust
/
8a2c6ea4097f8bd2f282af2c491ff58622d12bbe
/
.
/
tests
/
ui
/
missing
/
missing-fields-in-struct-pattern.rs
blob: 40304a674a63365b6e6321fd16128427b0ce0326 [
file
]
struct
S
(
usize
,
usize
,
usize
,
usize
);
fn
main
()
{
if
let
S
{
a
,
b
,
c
,
d
}
=
S
(
1
,
2
,
3
,
4
)
{
//~^ ERROR tuple variant `S` written as struct variant
println
!(
"hi"
);
}
}