8 lines
83 B
Rust
8 lines
83 B
Rust
//@ check-pass
|
|
|
|
trait Expr: PartialEq<Self::Item> {
|
|
type Item;
|
|
}
|
|
|
|
fn main() {}
|