mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 05:52:05 +00:00
14 lines
161 B
Rust
14 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() {
|
|
|
|
}
|