rust/tests/ui/issues/issue-15104.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
241 B
Rust
Raw Normal View History

// run-pass
fn main() {
assert_eq!(count_members(&[1, 2, 3, 4]), 4);
}
fn count_members(v: &[usize]) -> usize {
match *v {
[] => 0,
[_] => 1,
2019-07-07 23:47:46 +00:00
[_, ref xs @ ..] => 1 + count_members(xs)
}
}