2018-08-08 07:28:26 -05:00
|
|
|
error[E0391]: cycle detected when computing the bounds for type parameter `T`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/cycle-projection-based-on-where-clause.rs:17:19
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | T : Add<T::Item>
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
= note: ...which again requires computing the bounds for type parameter `T`, completing the cycle
|
|
|
|
note: cycle used when processing `A`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/cycle-projection-based-on-where-clause.rs:17:19
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | T : Add<T::Item>
|
|
|
|
| ^^^^^^^
|
|
|
|
|
2019-04-05 06:22:13 -05:00
|
|
|
error: aborting due to previous error
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2019-04-05 06:22:13 -05:00
|
|
|
For more information about this error, try `rustc --explain E0391`.
|