rust/src/test/ui/array-slice-vec/match_arr_unknown_len.rs
2020-05-09 14:40:17 +02:00

11 lines
237 B
Rust

#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete
fn is_123<const N: usize>(x: [u32; N]) -> bool {
match x {
[1, 2] => true, //~ ERROR mismatched types
_ => false
}
}
fn main() {}