Sign in
fuchsia
/
third_party
/
rust
/
7e8a8c9cb152530c9833a389e7a7d79c7db693cc
/
.
/
tests
/
ui
/
array-slice-vec
/
match_arr_unknown_len.rs
blob: d190d7054fee7df4e980f089d93371782491d959 [
file
] [
log
] [
blame
]
fn
is_123
<
const
N
:
usize
>(
x
:
[
u32
;
N
])
->
bool
{
match
x
{
[
1
,
2
]
=>
true
,
//~ ERROR mismatched types
_
=>
false
}
}
fn
main
()
{}