blob: bbcb954afcc8c1e0b89165a36b88cd76fd1600f4 [file] [log] [blame]
// 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)
};
}