Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
binding
/
const-param.rs
blob: 2d051808fe0bea703105a9fb015ce93545992304 [
file
] [
log
] [
blame
] [
edit
]
// 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
()
{}