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-24 19:23:06 +00:00
|
|
|
| ^^^^
|
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`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-08-03 14:43:36 +02:00
|
|
|
|
2023-08-14 13:09:53 +00:00
|
|
|
For more information about this error, try `rustc --explain E0275`.
|