mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-11 17:37:41 +00:00
12 lines
186 B
Rust
12 lines
186 B
Rust
![]() |
//@ check-pass
|
||
|
|
||
|
pub trait Foo {
|
||
|
type X: PartialEq;
|
||
|
type Y: PartialEq<Self::Y>;
|
||
|
type Z: PartialEq<Self::Y>;
|
||
|
}
|
||
|
|
||
|
fn uwu(x: &dyn Foo<X = i32, Y = i32, Z = i32>) {}
|
||
|
|
||
|
fn main() {}
|