blob: 474c9765595b065e99f070cb07221279a6c897cd [file] [log] [blame]
// check-pass
#![allow(dead_code)]
trait Trait {
type Output;
}
fn f<T: Trait>() {
std::mem::size_of::<T::Output>();
}
fn main() {}