rust/src/test/ui/did_you_mean/recursion_limit.stderr

26 lines
1.0 KiB
Plaintext
Raw Normal View History

error[E0275]: overflow evaluating the requirement `J: std::marker::Send`
2018-12-25 15:56:47 +00:00
--> $DIR/recursion_limit.rs:34:5
|
2018-02-23 00:42:32 +00:00
LL | is_send::<A>(); //~ ERROR overflow evaluating the requirement
| ^^^^^^^^^^^^
|
2017-02-28 18:18:54 +00:00
= help: consider adding a `#![recursion_limit="20"]` attribute to your crate
= 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`
note: required by `is_send`
2018-12-25 15:56:47 +00:00
--> $DIR/recursion_limit.rs:31:1
|
2018-02-23 00:42:32 +00:00
LL | fn is_send<T:Send>() { }
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0275`.