]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/method-self-arg.rs
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / run-pass / method-self-arg.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 method calls with self as an argument
12
13 #![feature(box_syntax)]
14
15 static mut COUNT: usize = 1;
16
17 #[derive(Copy, Clone)]
18 struct Foo;
19
20 impl Foo {
21     fn foo(self, x: &Foo) {
22         unsafe { COUNT *= 2; }
23         // Test internal call.
24         Foo::bar(&self);
25         Foo::bar(x);
26
27         Foo::baz(self);
28         Foo::baz(*x);
29
30         Foo::qux(box self);
31         Foo::qux(box *x);
32     }
33
34     fn bar(&self) {
35         unsafe { COUNT *= 3; }
36     }
37
38     fn baz(self) {
39         unsafe { COUNT *= 5; }
40     }
41
42     fn qux(self: Box<Foo>) {
43         unsafe { COUNT *= 7; }
44     }
45 }
46
47 fn main() {
48     let x = Foo;
49     // Test external call.
50     Foo::bar(&x);
51     Foo::baz(x);
52     Foo::qux(box x);
53
54     x.foo(&x);
55
56     unsafe { assert_eq!(COUNT, 2*3*3*3*5*5*5*7*7*7); }
57 }