blob: d50c220bcfd4863586fa9ced994d90ac649267a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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_100191_2`)
note: required for `T` to implement `Trait<_>`
--> $DIR/issue-100191-2.rs:8:20
|
LL | default impl<T, U> Trait<T> for U {}
| ^^^^^^^^ ^
= note: 128 redundant requirements hidden
= note: required for `T` to implement `Trait<_>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0275`.
|