1 2 3 4 5 6 7
#[lang = "sized"] pub trait Sized {} pub struct A<T>(T); pub struct B<T>(T); pub fn foo(_: A<B<i32>>) {}