Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
const-generics
/
arg-in-pat-2.rs
blob: f40437c9e78f2718ccd3fa04524753f6f48828e2 [
file
] [
log
] [
blame
]
//@ check-pass
enum
Generic
<
const
N
:
usize
>
{
Variant
,
}
fn
main
()
{
match
todo
!()
{
Generic
::<
0usize
>::
Variant
=>
todo
!()
}
}