2023-04-19 23:04:01 +00:00
|
|
|
error[E0275]: overflow evaluating the requirement `W<_>: Trait`
|
2023-08-24 19:23:06 +00:00
|
|
|
--> $DIR/exponential-trait-goals.rs:17:13
|
2023-04-19 23:04:01 +00:00
|
|
|
|
|
|
|
|
LL | impls::<W<_>>();
|
2023-08-24 19:23:06 +00:00
|
|
|
| ^^^^
|
2023-04-19 23:04:01 +00:00
|
|
|
|
|
|
|
|
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 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-04-19 23:04:01 +00:00
|
|
|
|
2023-08-14 13:09:53 +00:00
|
|
|
For more information about this error, try `rustc --explain E0275`.
|