7 lines
99 B
Rust
7 lines
99 B
Rust
trait Expr : PartialEq<Self::Item> {
|
|
//~^ ERROR: cycle detected
|
|
type Item;
|
|
}
|
|
|
|
fn main() {}
|