mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-09 14:25:24 +00:00
9 lines
155 B
Rust
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() {}
|