2022-07-27 05:06:46 +00:00
|
|
|
error[E0275]: overflow evaluating the requirement `T: Trait<_>`
|
|
|
|
|
|
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_45814`)
|
2022-08-15 20:31:37 +00:00
|
|
|
note: required for `T` to implement `Trait<_>`
|
2022-11-18 13:51:24 +00:00
|
|
|
--> $DIR/issue-45814.rs:9:20
|
2022-07-27 05:06:46 +00:00
|
|
|
|
|
|
|
|
LL | default impl<T, U> Trait<T> for U {}
|
|
|
|
| ^^^^^^^^ ^
|
|
|
|
= note: 128 redundant requirements hidden
|
2022-08-15 20:31:37 +00:00
|
|
|
= note: required for `T` to implement `Trait<_>`
|
2022-07-27 05:06:46 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0275`.
|