
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
13 lines
161 B
Rust
13 lines
161 B
Rust
//@ run-pass
|
|
|
|
pub trait Foo<T> {
|
|
fn func1<U>(&self, t: U, w: T);
|
|
|
|
fn func2<U>(&self, t: U, w: T) {
|
|
self.func1(t, w);
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
|
|
}
|