DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / const-generics / arg-in-pat-2.rs
12345678910
//@ check-pass enum Generic<const N: usize> { Variant, } fn main() { match todo!() { Generic::<0usize>::Variant => todo!() } }