Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
15 lines
147 B
Rust
15 lines
147 B
Rust
//@ check-pass
|
|
|
|
trait A<X> {
|
|
fn dummy(&self, arg: X);
|
|
}
|
|
|
|
trait B {
|
|
type X;
|
|
type Y: A<Self::X>;
|
|
|
|
fn dummy(&self);
|
|
}
|
|
|
|
fn main () { }
|