blob: 0cc550bea9c34db0c189444c22bb4a968de82fd1 [file] [log] [blame] [edit]
//@ 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]);
}