Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-13482-2.rs
blob: bbcb954afcc8c1e0b89165a36b88cd76fd1600f4 [
file
] [
log
] [
blame
]
// compile-flags:-Z verbose
fn
main
()
{
let
x
=
[
1
,
2
];
let
y
=
match
x
{
[]
=>
None
,
//~ ERROR pattern requires 0 elements but array has 2
[
a
,
_
]
=>
Some
(
a
)
};
}