Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
pattern
/
usefulness
/
struct-pattern-match-useless.rs
blob: 93f0a9317616926cf7d2d99681a05de04ac8c6f2 [
file
] [
log
] [
blame
] [
edit
]
#![
deny
(
unreachable_patterns
)]
struct
Foo
{
x
:
isize
,
y
:
isize
,
}
pub
fn
main
()
{
let
a
=
Foo
{
x
:
1
,
y
:
2
};
match
a
{
Foo
{
x
:
_x
,
y
:
_y
}
=>
(),
Foo
{
..
}
=>
()
//~ ERROR unreachable pattern
}
}