2019-05-31 22:27:26 +01:00
|
|
|
fn is_123<const N: usize>(x: [u32; N]) -> bool {
|
|
|
|
|
match x {
|
2020-03-30 19:34:16 +02:00
|
|
|
[1, 2, ..] => true, //~ ERROR cannot pattern-match on an array without a fixed length
|
2019-05-31 22:27:26 +01:00
|
|
|
_ => false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|