24 lines
766 B
Plaintext
24 lines
766 B
Plaintext
|
error[E0391]: cycle detected when computing the bounds for type parameter `T`
|
||
|
--> $DIR/issue-21177.rs:16:21
|
||
|
|
|
||
|
LL | fn foo<T: Trait<A = T::B>>() { }
|
||
|
| ^^^^
|
||
|
|
|
||
|
= note: ...which again requires computing the bounds for type parameter `T`, completing the cycle
|
||
|
note: cycle used when processing `foo`
|
||
|
--> $DIR/issue-21177.rs:16:21
|
||
|
|
|
||
|
LL | fn foo<T: Trait<A = T::B>>() { }
|
||
|
| ^^^^
|
||
|
|
||
|
error[E0220]: associated type `B` not found for `T`
|
||
|
--> $DIR/issue-21177.rs:16:21
|
||
|
|
|
||
|
LL | fn foo<T: Trait<A = T::B>>() { }
|
||
|
| ^^^^ associated type `B` not found
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|
||
|
Some errors occurred: E0220, E0391.
|
||
|
For more information about an error, try `rustc --explain E0220`.
|