mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
428 B
Rust
23 lines
428 B
Rust
// run-pass
|
|
|
|
fn main() {
|
|
let mut x: &[_] = &[1, 2, 3, 4];
|
|
|
|
let mut result = vec![];
|
|
loop {
|
|
x = match *x {
|
|
[1, n, 3, ref rest @ ..] => {
|
|
result.push(n);
|
|
rest
|
|
}
|
|
[n, ref rest @ ..] => {
|
|
result.push(n);
|
|
rest
|
|
}
|
|
[] =>
|
|
break
|
|
}
|
|
}
|
|
assert_eq!(result, [2, 4]);
|
|
}
|