rust/tests/ui/binding/const-param.rs
Esteban Küber 253eb95d45 Tweak output of some const pattern errors
- Add primary span labels.
- Point at const generic parameter used as pattern.
- Point at statics used as pattern.
- Point at let bindings used in const pattern.
2024-12-04 20:29:36 +00: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() {}