]> git.proxmox.com Git - rustc.git/blame - tests/ui/traits/new-solver/cycles/inductive-not-on-stack.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / traits / new-solver / cycles / inductive-not-on-stack.stderr
CommitLineData
781aab86
FG
1error[E0275]: overflow evaluating the requirement `(): A`
2 --> $DIR/inductive-not-on-stack.rs:41:15
3 |
4LL | impls_a::<()>();
5 | ^^
6 |
7 = help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`inductive_not_on_stack`)
8note: required by a bound in `impls_a`
9 --> $DIR/inductive-not-on-stack.rs:25:15
10 |
11LL | fn impls_a<T: A>() {}
12 | ^ required by this bound in `impls_a`
13
add651ee 14error[E0275]: overflow evaluating the requirement `(): AR`
781aab86 15 --> $DIR/inductive-not-on-stack.rs:44:16
add651ee
FG
16 |
17LL | impls_ar::<()>();
781aab86 18 | ^^
add651ee
FG
19 |
20 = help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`inductive_not_on_stack`)
21note: required by a bound in `impls_ar`
22 --> $DIR/inductive-not-on-stack.rs:38:16
23 |
24LL | fn impls_ar<T: AR>() {}
25 | ^^ required by this bound in `impls_ar`
26
781aab86 27error: aborting due to 2 previous errors
add651ee
FG
28
29For more information about this error, try `rustc --explain E0275`.