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