]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-overloaded-index-autoderef.rs
Re-word explanation on closures in intro
[rust.git] / src / test / compile-fail / borrowck-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 that we still see borrowck errors of various kinds when using
12 // indexing and autoderef in combination.
13
14 use std::ops::{Index, IndexMut};
15
16 struct Foo {
17     x: isize,
18     y: isize,
19 }
20
21 impl Index<String> for Foo {
22     type Output = isize;
23
24     fn index<'a>(&'a self, z: &String) -> &'a isize {
25         if *z == "x" {
26             &self.x
27         } else {
28             &self.y
29         }
30     }
31 }
32
33 impl IndexMut<String> for Foo {
34     fn index_mut<'a>(&'a mut self, z: &String) -> &'a mut isize {
35         if *z == "x" {
36             &mut self.x
37         } else {
38             &mut self.y
39         }
40     }
41 }
42
43 fn test1(mut f: Box<Foo>, s: String) {
44     let _p = &mut f[s];
45     let _q = &f[s]; //~ ERROR cannot borrow
46 }
47
48 fn test2(mut f: Box<Foo>, s: String) {
49     let _p = &mut f[s];
50     let _q = &mut f[s]; //~ ERROR cannot borrow
51 }
52
53 struct Bar {
54     foo: Foo
55 }
56
57 fn test3(mut f: Box<Bar>, s: String) {
58     let _p = &mut f.foo[s];
59     let _q = &mut f.foo[s]; //~ ERROR cannot borrow
60 }
61
62 fn test4(mut f: Box<Bar>, s: String) {
63     let _p = &f.foo[s];
64     let _q = &f.foo[s];
65 }
66
67 fn test5(mut f: Box<Bar>, s: String) {
68     let _p = &f.foo[s];
69     let _q = &mut f.foo[s]; //~ ERROR cannot borrow
70 }
71
72 fn test6(mut f: Box<Bar>, g: Foo, s: String) {
73     let _p = &f.foo[s];
74     f.foo = g; //~ ERROR cannot assign
75 }
76
77 fn test7(mut f: Box<Bar>, g: Bar, s: String) {
78     let _p = &f.foo[s];
79     *f = g; //~ ERROR cannot assign
80 }
81
82 fn test8(mut f: Box<Bar>, g: Foo, s: String) {
83     let _p = &mut f.foo[s];
84     f.foo = g; //~ ERROR cannot assign
85 }
86
87 fn test9(mut f: Box<Bar>, g: Bar, s: String) {
88     let _p = &mut f.foo[s];
89     *f = g; //~ ERROR cannot assign
90 }
91
92 fn main() {
93 }