### Code description ```rust fn concrete(input: [u32; 10]) { // ... } fn generic<const N: usize>(input: [u32; N]) { match N { 10 => concrete(input), _ => panic!("invalid input size"), } } ``` Some people have wanted this to compile, this has some overlap with pattern types I expect cc @oli-obk