about summary refs log tree commit diff
path: root/src/test/ui/binding/const-param.rs
blob: 3c7f4d071f6945bec39a26998f92b697b0843c08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Identifier pattern referring to a const generic parameter is an error (issue #68853).

#![feature(const_generics)] //~ WARN the feature `const_generics` is incomplete

fn check<const N: usize>() {
    match 1 {
        N => {} //~ ERROR const parameters cannot be referenced in patterns
        _ => {}
    }
}

fn main() {}