]> git.proxmox.com Git - rustc.git/blob - src/test/ui/did_you_mean/recursion_limit.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / did_you_mean / recursion_limit.stderr
1 error[E0275]: overflow evaluating the requirement `K: Send`
2 --> $DIR/recursion_limit.rs:34:5
3 |
4 LL | fn is_send<T:Send>() { }
5 | ---- required by this bound in `is_send`
6 ...
7 LL | is_send::<A>();
8 | ^^^^^^^^^^^^
9 |
10 = help: consider adding a `#![recursion_limit="20"]` attribute to your crate (`recursion_limit`)
11 = note: required because it appears within the type `J`
12 = note: required because it appears within the type `I`
13 = note: required because it appears within the type `H`
14 = note: required because it appears within the type `G`
15 = note: required because it appears within the type `F`
16 = note: required because it appears within the type `E`
17 = note: required because it appears within the type `D`
18 = note: required because it appears within the type `C`
19 = note: required because it appears within the type `B`
20 = note: required because it appears within the type `A`
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0275`.