rust/tests/ui/traits/next-solver/cycles/coinduction/fixpoint-exponential-growth.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
605 B
Plaintext
Raw Normal View History

2023-08-03 14:43:36 +02:00
error[E0275]: overflow evaluating the requirement `W<_>: Trait`
2023-12-09 09:47:14 +00:00
--> $DIR/fixpoint-exponential-growth.rs:33:13
2023-08-03 14:43:36 +02:00
|
LL | impls::<W<_>>();
| ^^^^
2023-08-03 14:43:36 +02:00
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`fixpoint_exponential_growth`)
note: required by a bound in `impls`
2023-12-09 09:47:14 +00:00
--> $DIR/fixpoint-exponential-growth.rs:30:13
2023-08-03 14:43:36 +02:00
|
LL | fn impls<T: Trait>() {}
| ^^^^^ required by this bound in `impls`
error: aborting due to 1 previous error
2023-08-03 14:43:36 +02:00
For more information about this error, try `rustc --explain E0275`.