]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/overloaded-index-in-field.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[rust.git] / src / test / run-pass / overloaded-index-in-field.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 using overloaded indexing when the "map" is stored in a
12 // field. This caused problems at some point.
13
14 // pretty-expanded FIXME #23616
15
16 #![feature(core)]
17
18 use std::ops::Index;
19
20 struct Foo {
21     x: int,
22     y: int,
23 }
24
25 struct Bar {
26     foo: Foo
27 }
28
29 impl Index<int> for Foo {
30     type Output = int;
31
32     fn index(&self, z: &int) -> &int {
33         if *z == 0 {
34             &self.x
35         } else {
36             &self.y
37         }
38     }
39 }
40
41 trait Int {
42     fn get(self) -> int;
43     fn get_from_ref(&self) -> int;
44     fn inc(&mut self);
45 }
46
47 impl Int for int {
48     fn get(self) -> int { self }
49     fn get_from_ref(&self) -> int { *self }
50     fn inc(&mut self) { *self += 1; }
51 }
52
53 fn main() {
54     let f = Bar { foo: Foo {
55         x: 1,
56         y: 2,
57     } };
58     assert_eq!(f.foo[1].get(), 2);
59 }