DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / const-generics / type-dependent / simple.rs
123456789
// run-pass struct R; impl R { fn method<const N: u8>(&self) -> u8 { N } } fn main() { assert_eq!(R.method::<1u8>(), 1); }