rust/tests/ui/binding/const-param.rs
2023-01-11 09:32:08 +00:00

11 lines
247 B
Rust

// Identifier pattern referring to a const generic parameter is an error (issue #68853).
fn check<const N: usize>() {
match 1 {
N => {} //~ ERROR const parameters cannot be referenced in patterns
_ => {}
}
}
fn main() {}