summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0730.rs
blob: 04f5e5d4257458c20c405a46641b01ce10be560e (plain)
1
2
3
4
5
6
7
8
fn is_123<const N: usize>(x: [u32; N]) -> bool {
    match x {
        [1, 2, ..] => true, //~ ERROR cannot pattern-match on an array without a fixed length
        _ => false
    }
}

fn main() {}