]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/ufcs-explicit-self.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / ufcs-explicit-self.rs
1 // Copyright 2012 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 #![allow(unknown_features)]
12 #![feature(box_syntax)]
13
14 #[derive(Copy, Clone)]
15 struct Foo {
16     f: isize,
17 }
18
19 impl Foo {
20     fn foo(self: Foo, x: isize) -> isize {
21         self.f + x
22     }
23     fn bar(self: &Foo, x: isize) -> isize {
24         self.f + x
25     }
26     fn baz(self: Box<Foo>, x: isize) -> isize {
27         self.f + x
28     }
29 }
30
31 #[derive(Copy, Clone)]
32 struct Bar<T> {
33     f: T,
34 }
35
36 impl<T> Bar<T> {
37     fn foo(self: Bar<T>, x: isize) -> isize {
38         x
39     }
40     fn bar<'a>(self: &'a Bar<T>, x: isize) -> isize {
41         x
42     }
43     fn baz(self: Bar<T>, x: isize) -> isize {
44         x
45     }
46 }
47
48 fn main() {
49     let foo: Box<_> = box Foo {
50         f: 1,
51     };
52     println!("{} {} {}", foo.foo(2), foo.bar(2), foo.baz(2));
53     let bar: Box<_> = box Bar {
54         f: 1,
55     };
56     println!("{} {} {}", bar.foo(2), bar.bar(2), bar.baz(2));
57     let bar: Box<Bar<isize>> = bar;
58     println!("{} {} {}", bar.foo(2), bar.bar(2), bar.baz(2));
59 }