rustc/tests/ui/binding/const-param.rs
2025-02-17 11:14:05 +01:00

11 lines
250 B
Rust

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