summary refs log tree commit diff
path: root/src/test/compile-fail/alt-vec-invalid.rs
blob: b35731c2e4acd211408dfd80930fddc14d9f0f5b (plain)
1
2
3
4
5
6
7
fn main() {
    let a = ~[];
    match a {
        [1, ..tail, ..tail] => {}, //~ ERROR: expected `]` but found `,`
        _ => ()
    }
}