mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
176 B
Rust
16 lines
176 B
Rust
// run-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 () { }
|