Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
slice_rest_pattern.rs
blob: bb3c414173a350e873b1d82b21f5b798239f0c69 [
file
] [
log
] [
blame
]
pub
fn
foo
(
a
:
&[
u32
])
{
match
a
{
[
first
,
..]
=>
{}
[..,
last
]
=>
{}
_
=>
{}
}
}