1 2 3 4 5 6 7
fn main() { let a = ~[]; match a { [1, ..tail, ..tail] => {}, //~ ERROR: unexpected token: `..` _ => () } }