DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / tests / ui / issues / issue-43357.rs
1234567891011
//@ check-pass #![allow(dead_code)] trait Trait { type Output; } fn f<T: Trait>() { std::mem::size_of::<T::Output>(); } fn main() {}