blob: f40437c9e78f2718ccd3fa04524753f6f48828e2 [file] [log] [blame] [edit]
//@ check-pass
enum Generic<const N: usize> {
Variant,
}
fn main() {
match todo!() {
Generic::<0usize>::Variant => todo!()
}
}