]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/self-impl.rs
Merge branch 'master' into cfg_tmp_dir
[rust.git] / src / test / run-pass / self-impl.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test that we can use `Self` types in impls in the expected way.
12
13 struct Foo;
14
15 // Test uses on inherant impl.
16 impl Foo {
17     fn foo(_x: Self, _y: &Self, _z: Box<Self>) -> Self {
18         Foo
19     }
20 }
21
22 // Test uses when implementing a trait and with a type parameter.
23 pub struct Baz<X> {
24     pub f: X,
25 }
26
27 trait Bar<X> {
28     fn bar(x: Self, y: &Self, z: Box<Self>) -> Self;
29 }
30
31 impl Bar<int> for Box<Baz<int>> {
32     fn bar(_x: Self, _y: &Self, _z: Box<Self>) -> Self {
33         box Baz { f: 42 }
34     }
35 }
36
37 fn main() {
38     let _: Foo = Foo::foo(Foo, &Foo, box Foo);
39     let _: Box<Baz<int>> = Bar::bar(box Baz { f: 42 },
40                                     &box Baz { f: 42 },
41                                     box box Baz { f: 42 });
42 }