summaryrefslogtreecommitdiffstats
path: root/src/test/ui/self/arbitrary_self_types_silly.rs
blob: fb5f9012b1865c8f2b302709dec302ccccafb0d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// run-pass
#![feature(arbitrary_self_types)]

struct Foo;
struct Bar;

impl std::ops::Deref for Bar {
    type Target = Foo;

    fn deref(&self) -> &Foo {
        &Foo
    }
}

impl Foo {
    fn bar(self: Bar) -> i32 { 3 }
}

fn main() {
    assert_eq!(3, Bar.bar());
}