DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.85.0%2Bdfsg3-1~deb12u3 / 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); }