Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui
/
structs
/
struct-pattern-match-useless.rs
blob: 93f0a9317616926cf7d2d99681a05de04ac8c6f2 [
file
] [
log
] [
blame
]
#![
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
}
}