8 lines
136 B
Rust
8 lines
136 B
Rust
fn main() {
|
|
let a = ~[];
|
|
match a {
|
|
[1, ..tail, ..tail] => {}, //~ ERROR: unexpected token: `..`
|
|
_ => ()
|
|
}
|
|
}
|