]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/overloaded-index-autoderef.rs
rollup merge of #20707: nikomatsakis/issue-20582
[rust.git] / src / test / run-pass / overloaded-index-autoderef.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 overloaded indexing combined with autoderef.
12
13 #![allow(unknown_features)]
14 #![feature(box_syntax)]
15
16 use std::ops::{Index, IndexMut};
17
18 struct Foo {
19     x: int,
20     y: int,
21 }
22
23 impl Index<int> for Foo {
24     type Output = int;
25
26     fn index(&self, z: &int) -> &int {
27         if *z == 0 {
28             &self.x
29         } else {
30             &self.y
31         }
32     }
33 }
34
35 impl IndexMut<int> for Foo {
36     type Output = int;
37
38     fn index_mut(&mut self, z: &int) -> &mut int {
39         if *z == 0 {
40             &mut self.x
41         } else {
42             &mut self.y
43         }
44     }
45 }
46
47 trait Int {
48     fn get(self) -> int;
49     fn get_from_ref(&self) -> int;
50     fn inc(&mut self);
51 }
52
53 impl Int for int {
54     fn get(self) -> int { self }
55     fn get_from_ref(&self) -> int { *self }
56     fn inc(&mut self) { *self += 1; }
57 }
58
59 fn main() {
60     let mut f = box Foo {
61         x: 1,
62         y: 2,
63     };
64
65     assert_eq!(f[1], 2);
66
67     f[0] = 3;
68
69     assert_eq!(f[0], 3);
70
71     // Test explicit IndexMut where `f` must be autoderef:
72     {
73         let p = &mut f[1];
74         *p = 4;
75     }
76
77     // Test explicit Index where `f` must be autoderef:
78     {
79         let p = &f[1];
80         assert_eq!(*p, 4);
81     }
82
83     // Test calling methods with `&mut self`, `self, and `&self` receivers:
84     f[1].inc();
85     assert_eq!(f[1].get(), 5);
86     assert_eq!(f[1].get_from_ref(), 5);
87 }