about summary refs log tree commit diff
path: root/tests/ui/pattern/array-length-mismatch-verbose-13482.rs
blob: 619e9d748efb31ad9efb5c23cc2c18b639b7c015 (plain)
1
2
3
4
5
6
7
8
9
//@ compile-flags:-Z verbose-internals

fn main() {
    let x = [1,2];
    let y = match x {
        [] => None, //~ ERROR pattern requires 0 elements but array has 2
        [a,_] => Some(a)
    };
}