]> git.proxmox.com Git - rustc.git/blob - tests/ui/traits/new-solver/cycles/coinduction/fixpoint-exponential-growth.stderr
New upstream version 1.75.0+dfsg1
[rustc.git] / tests / ui / traits / new-solver / cycles / coinduction / fixpoint-exponential-growth.stderr
1 error[E0275]: overflow evaluating the requirement `W<_>: Trait`
2 --> $DIR/fixpoint-exponential-growth.rs:29:13
3 |
4 LL | impls::<W<_>>();
5 | ^^^^
6 |
7 = help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`fixpoint_exponential_growth`)
8 note: required by a bound in `impls`
9 --> $DIR/fixpoint-exponential-growth.rs:26:13
10 |
11 LL | fn impls<T: Trait>() {}
12 | ^^^^^ required by this bound in `impls`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0275`.