rustc/tests/ui/const-generics/arg-in-pat-2.rs
2024-06-21 09:39:33 +02:00

11 lines
148 B
Rust

//@ check-pass
enum Generic<const N: usize> {
Variant,
}
fn main() {
match todo!() {
Generic::<0usize>::Variant => todo!()
}
}