1 2 3 4 5 6 7 8 9
#[lang = "sized"] trait Sized {} pub struct S<T>(T); pub fn foo<T>(x: T) { let y = S(x); y.0; }