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