summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/inheritance/self.rs
blob: 5f2559f48eb341837e061b3d134920196e1a6ece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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();
}