blob: bb3c414173a350e873b1d82b21f5b798239f0c69 [file] [log] [blame]
pub fn foo(a: &[u32]) {
match a {
[first, ..] => {}
[.., last] => {}
_ => {}
}
}