mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
30 lines
335 B
Rust
30 lines
335 B
Rust
// run-pass
|
|
trait Foo<T> {
|
|
fn f(&self, x: &T);
|
|
}
|
|
|
|
trait Bar : Sized + Foo<Self> {
|
|
fn g(&self);
|
|
}
|
|
|
|
struct S {
|
|
x: isize
|
|
}
|
|
|
|
impl Foo<S> for S {
|
|
fn f(&self, x: &S) {
|
|
println!("{}", x.x);
|
|
}
|
|
}
|
|
|
|
impl Bar for S {
|
|
fn g(&self) {
|
|
self.f(self);
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let s = S { x: 1 };
|
|
s.g();
|
|
}
|