rustc/tests/ui/array-slice-vec/match_arr_unknown_len.rs
2023-08-02 10:33:26 +02:00

9 lines
155 B
Rust

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