2023-04-19 18:04:01 -05:00
|
|
|
error[E0275]: overflow evaluating the requirement `W<_>: Trait`
|
2023-08-24 14:23:06 -05:00
|
|
|
--> $DIR/exponential-trait-goals.rs:17:13
|
2023-04-19 18:04:01 -05:00
|
|
|
|
|
|
|
|
LL | impls::<W<_>>();
|
2023-08-24 14:23:06 -05:00
|
|
|
| ^^^^
|
2023-04-19 18:04:01 -05:00
|
|
|
|
|
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`exponential_trait_goals`)
|
|
|
|
note: required by a bound in `impls`
|
|
|
|
--> $DIR/exponential-trait-goals.rs:14:13
|
|
|
|
|
|
|
|
|
LL | fn impls<T: Trait>() {}
|
|
|
|
| ^^^^^ required by this bound in `impls`
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-04-19 18:04:01 -05:00
|
|
|
|
2023-08-14 08:09:53 -05:00
|
|
|
For more information about this error, try `rustc --explain E0275`.
|