about summary refs log tree commit diff
path: root/src/test/ui/binding/const-param.rs
blob: 4aec801cb1552df3eec4b18eae7ba7954bca843d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Identifier pattern referring to a const generic parameter is an error (issue #68853).
// revisions: full min
#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]

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

fn main() {}