rust/src/test/ui/binding/const-param.rs
Bastian Kauschke c4ba60a191 update tests
2020-12-26 18:24:10 +01:00

13 lines
361 B
Rust

// 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() {}