11 lines
237 B
Rust
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() {}
|