
- 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.
10 lines
250 B
Rust
10 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() {}
|