1 2 3 4 5 6 7 8 9
// compile-flags:-Z verbose fn main() { let x = [1,2]; let y = match x { [] => None, //~ ERROR pattern requires 0 elements but array has 2 [a,_] => Some(a) }; }