error[E0072]: recursive types `A` and `B` have infinite size --> $DIR/issue-105231.rs:2:1 | LL | struct A(B); | ^^^^^^^^^^^ ---- recursive without indirection ... LL | struct B(A>); | ^^^^^^^^^^^ ------- recursive without indirection | help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle | LL ~ struct A(Box>); LL | LL | LL ~ struct B(Box>>); | error: type parameter `T` is only used recursively --> $DIR/issue-105231.rs:2:15 | LL | struct A(B); | - ^ | | | type parameter must be used non-recursively in the definition | = help: consider removing `T`, referring to it in a field, or using a marker such as `PhantomData` = note: all type parameters must be used in a non-recursive way in order to constrain their variance error: type parameter `T` is only used recursively --> $DIR/issue-105231.rs:5:17 | LL | struct B(A>); | - ^ | | | type parameter must be used non-recursively in the definition | = help: consider removing `T`, referring to it in a field, or using a marker such as `PhantomData` = note: all type parameters must be used in a non-recursive way in order to constrain their variance error[E0275]: overflow evaluating the requirement `A>>>>>>: Send` | = help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_105231`) note: required because it appears within the type `B>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>` --> $DIR/issue-105231.rs:5:8 | LL | struct B(A>); | ^ error: aborting due to 4 previous errors Some errors have detailed explanations: E0072, E0275. For more information about an error, try `rustc --explain E0072`.