fn is_123(x: [u32; N]) -> bool { match x { [1, 2] => true, //~ ERROR mismatched types _ => false } } fn main() {}