Sign in
rust
/
rust
/
e2893f7c95e45f74c8bc5dbd033486c5bfaa4deb
/
.
/
tests
/
ui
/
binding
/
const-param.rs
blob: 98bc90f508ab2cf2a921b105244f00af5e380a97 [
file
] [
log
] [
blame
]
// 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
()
{}