1 2 3 4 5 6 7 8
fn is_123<const N: usize>(x: [u32; N]) -> bool { match x { [1, 2] => true, //~ ERROR mismatched types _ => false } } fn main() {}