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