2017-01-05 23:17:12 +00:00
|
|
|
error[E0275]: overflow evaluating the requirement `K: std::marker::Send`
|
|
|
|
--> $DIR/recursion_limit.rs:44:5
|
|
|
|
|
|
2017-11-20 13:13:27 +01:00
|
|
|
44 | is_send::<A>(); //~ ERROR overflow evaluating the requirement
|
2017-01-05 23:17:12 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
2017-02-28 18:18:54 +00:00
|
|
|
= help: consider adding a `#![recursion_limit="20"]` attribute to your crate
|
2017-01-05 23:17:12 +00:00
|
|
|
= note: required because it appears within the type `J`
|
|
|
|
= 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`
|
|
|
|
= 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 14:26:36 -08:00
|
|
|
note: required by `is_send`
|
|
|
|
--> $DIR/recursion_limit.rs:41:1
|
|
|
|
|
|
|
|
|
41 | fn is_send<T:Send>() { }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-01-05 23:17:12 +00:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to previous error
|
2017-01-05 23:17:12 +00:00
|
|
|
|