mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
247 B
Rust
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() {}
|