mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
178 B
Rust
16 lines
178 B
Rust
// check-pass
|
|
// pretty-expanded FIXME #23616
|
|
|
|
trait A<X> {
|
|
fn dummy(&self, arg: X);
|
|
}
|
|
|
|
trait B {
|
|
type X;
|
|
type Y: A<Self::X>;
|
|
|
|
fn dummy(&self);
|
|
}
|
|
|
|
fn main () { }
|