mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00

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