DEBSOURCES
Skip Quicknav
sources / rustc / 1.86.0%2Bdfsg1-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!() } }