rust/src/test/ui/issues/issue-20772.rs
2018-12-25 21:08:33 -07:00

7 lines
134 B
Rust

trait T : Iterator<Item=Self::Item>
//~^ ERROR cycle detected
//~| ERROR associated type `Item` not found for `Self`
{}
fn main() {}