//~ ERROR overflow evaluating the requirement `A>>>>>>: Send` struct A(B); //~^ ERROR recursive types `A` and `B` have infinite size //~| ERROR `T` is never used struct B(A>); //~^ ERROR `T` is never used trait Foo {} impl Foo for T where T: Send {} impl Foo for B {} fn main() {}