2019-01-16 11:55:22 -06:00
|
|
|
error[E0275]: overflow evaluating the requirement `J: std::marker::Send`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/recursion_limit.rs:34:5
|
2017-01-05 17:17:12 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | is_send::<A>(); //~ ERROR overflow evaluating the requirement
|
2017-01-05 17:17:12 -06:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
2017-02-28 12:18:54 -06:00
|
|
|
= help: consider adding a `#![recursion_limit="20"]` attribute to your crate
|
2019-01-16 11:55:22 -06:00
|
|
|
= note: required because it appears within the type `I`
|
|
|
|
= note: required because it appears within the type `H`
|
|
|
|
= note: required because it appears within the type `G`
|
|
|
|
= note: required because it appears within the type `F`
|
|
|
|
= note: required because it appears within the type `E`
|
2017-01-05 17:17:12 -06:00
|
|
|
= note: required because it appears within the type `D`
|
|
|
|
= note: required because it appears within the type `C`
|
|
|
|
= note: required because it appears within the type `B`
|
|
|
|
= note: required because it appears within the type `A`
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `is_send`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/recursion_limit.rs:31:1
|
2018-01-15 16:26:36 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn is_send<T:Send>() { }
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-01-05 17:17:12 -06:00
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2017-01-05 17:17:12 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0275`.
|