]> git.lizzy.rs Git - rust.git/blob - src/test/auxiliary/method_self_arg2.rs
prefer "FIXME" to "TODO".
[rust.git] / src / test / auxiliary / method_self_arg2.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 #![crate_type = "lib"]
12
13 static mut COUNT: u64 = 1;
14
15 pub fn get_count() -> u64 { unsafe { COUNT } }
16
17 pub struct Foo;
18
19 impl Foo {
20     pub fn run_trait(self) {
21         unsafe { COUNT *= 17; }
22         // Test internal call.
23         Bar::foo1(&self);
24         Bar::foo2(self);
25         Bar::foo3(box self);
26
27         Bar::bar1(&self);
28         Bar::bar2(self);
29         Bar::bar3(box self);
30     }
31 }
32
33 pub trait Bar {
34     fn foo1(&self);
35     fn foo2(self);
36     fn foo3(self: Box<Self>);
37
38     fn bar1(&self) {
39         unsafe { COUNT *= 7; }
40     }
41     fn bar2(self) {
42         unsafe { COUNT *= 11; }
43     }
44     fn bar3(self: Box<Self>) {
45         unsafe { COUNT *= 13; }
46     }
47 }
48
49 impl Bar for Foo {
50     fn foo1(&self) {
51         unsafe { COUNT *= 2; }
52     }
53
54     fn foo2(self) {
55         unsafe { COUNT *= 3; }
56     }
57
58     fn foo3(self: Box<Foo>) {
59         unsafe { COUNT *= 5; }
60     }
61 }