mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +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() {}
|