]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/self-impl.rs
Auto merge of #22517 - brson:relnotes, r=Gankro
[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 #![allow(unknown_features)]
14 #![feature(box_syntax)]
15
16 struct Foo;
17
18 // Test uses on inherent impl.
19 impl Foo {
20     fn foo(_x: Self, _y: &Self, _z: Box<Self>) -> Self {
21         Foo
22     }
23 }
24
25 // Test uses when implementing a trait and with a type parameter.
26 pub struct Baz<X> {
27     pub f: X,
28 }
29
30 trait Bar<X> {
31     fn bar(x: Self, y: &Self, z: Box<Self>) -> Self;
32 }
33
34 impl Bar<int> for Box<Baz<int>> {
35     fn bar(_x: Self, _y: &Self, _z: Box<Self>) -> Self {
36         box Baz { f: 42 }
37     }
38 }
39
40 fn main() {
41     let _: Foo = Foo::foo(Foo, &Foo, box Foo);
42     let _: Box<Baz<int>> = Bar::bar(box Baz { f: 42 },
43                                     &box Baz { f: 42 },
44                                     box box Baz { f: 42 });
45 }