rust/src/test/ui/issues/issue-20772.stderr

22 lines
709 B
Plaintext
Raw Normal View History

2018-07-15 14:11:54 -07:00
error[E0391]: cycle detected when computing the supertraits of `T`
2018-12-25 08:56:47 -07:00
--> $DIR/issue-20772.rs:1:1
2018-07-15 14:11:54 -07:00
|
LL | / trait T : Iterator<Item=Self::Item>
LL | | //~^ ERROR cycle detected
LL | | //~| ERROR associated type `Item` not found for `Self`
LL | | {}
| |__^
|
= note: ...which again requires computing the supertraits of `T`, completing the cycle
error[E0220]: associated type `Item` not found for `Self`
2018-12-25 08:56:47 -07:00
--> $DIR/issue-20772.rs:1:25
2018-07-15 14:11:54 -07:00
|
LL | trait T : Iterator<Item=Self::Item>
| ^^^^^^^^^^ associated type `Item` not found
error: aborting due to 2 previous errors
Some errors occurred: E0220, E0391.
For more information about an error, try `rustc --explain E0220`.