summary refs log tree commit diff
path: root/src/test/run-pass/auto-ref-bounded-ty-param.rs
blob: 29f65af239ec52c6eb8dc1492c96e0eccc685a50 (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
30
use to_str::ToStr;

trait Foo {
    fn f(&self);
}

struct Bar {
    x: int
}

trait Baz {
    fn g(&self);
}

impl<T:Baz> T : Foo {
    fn f(&self) {
        self.g();
    }
}

impl Bar : Baz {
    fn g(&self) {
        io::println(self.x.to_str());
    }
}

fn main() {
    let y = Bar { x: 42 };
    y.f();
}