2023-03-14 13:56:16 +00:00
|
|
|
error[E0275]: overflow evaluating the requirement `J: Send`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/recursion_limit.rs:34:5
|
2017-01-05 23:17:12 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | is_send::<A>();
|
2024-01-24 02:52:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2017-01-05 23:17:12 +00:00
|
|
|
|
|
2021-09-28 20:16:42 +00:00
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "20"]` attribute to your crate (`recursion_limit`)
|
2021-03-30 20:37:30 +00:00
|
|
|
note: required because it appears within the type `I`
|
|
|
|
--> $DIR/recursion_limit.rs:23:9
|
|
|
|
|
|
|
|
|
LL | link! { I, J }
|
|
|
|
| ^
|
|
|
|
note: required because it appears within the type `H`
|
|
|
|
--> $DIR/recursion_limit.rs:22:9
|
|
|
|
|
|
|
|
|
LL | link! { H, I }
|
|
|
|
| ^
|
|
|
|
note: required because it appears within the type `G`
|
|
|
|
--> $DIR/recursion_limit.rs:21:9
|
|
|
|
|
|
|
|
|
LL | link! { G, H }
|
|
|
|
| ^
|
|
|
|
note: required because it appears within the type `F`
|
|
|
|
--> $DIR/recursion_limit.rs:20:9
|
|
|
|
|
|
|
|
|
LL | link! { F, G }
|
|
|
|
| ^
|
|
|
|
note: required because it appears within the type `E`
|
|
|
|
--> $DIR/recursion_limit.rs:19:9
|
|
|
|
|
|
|
|
|
LL | link! { E, F }
|
|
|
|
| ^
|
|
|
|
note: required because it appears within the type `D`
|
|
|
|
--> $DIR/recursion_limit.rs:18:9
|
|
|
|
|
|
|
|
|
LL | link! { D, E }
|
|
|
|
| ^
|
|
|
|
note: required because it appears within the type `C`
|
|
|
|
--> $DIR/recursion_limit.rs:17:9
|
|
|
|
|
|
|
|
|
LL | link! { C, D }
|
|
|
|
| ^
|
|
|
|
note: required because it appears within the type `B`
|
|
|
|
--> $DIR/recursion_limit.rs:16:9
|
|
|
|
|
|
|
|
|
LL | link! { B, C }
|
|
|
|
| ^
|
|
|
|
note: required because it appears within the type `A`
|
|
|
|
--> $DIR/recursion_limit.rs:15:9
|
|
|
|
|
|
|
|
|
LL | link! { A, B }
|
|
|
|
| ^
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `is_send`
|
|
|
|
--> $DIR/recursion_limit.rs:31:14
|
|
|
|
|
|
|
|
|
LL | fn is_send<T:Send>() { }
|
|
|
|
| ^^^^ required by this bound in `is_send`
|
2017-01-05 23:17:12 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-01-05 23:17:12 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0275`.
|