blob: d252d442297925941d725a9bd973f6a23a34fc41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
struct Foo {
bar1: Bar,
bar2: Bar
}
impl Copy for Foo {}
struct Bar {
int1: int,
int2: int,
}
impl Copy for Bar {}
fn make_foo() -> Foo { panic!() }
fn borrow_same_field_twice_mut_mut() {
let mut foo = make_foo();
let bar1 = &mut foo.bar1;
let _bar2 = &mut foo.bar1; //~ ERROR cannot borrow
*bar1;
}
fn borrow_same_field_twice_mut_imm() {
let mut foo = make_foo();
let bar1 = &mut foo.bar1;
let _bar2 = &foo.bar1; //~ ERROR cannot borrow
*bar1;
}
fn borrow_same_field_twice_imm_mut() {
let mut foo = make_foo();
let bar1 = &foo.bar1;
let _bar2 = &mut foo.bar1; //~ ERROR cannot borrow
*bar1;
}
fn borrow_same_field_twice_imm_imm() {
let mut foo = make_foo();
let bar1 = &foo.bar1;
let _bar2 = &foo.bar1;
*bar1;
}
fn borrow_both_mut() {
let mut foo = make_foo();
let bar1 = &mut foo.bar1;
let _bar2 = &mut foo.bar2;
*bar1;
}
fn borrow_both_mut_pattern() {
let mut foo = make_foo();
match foo {
Foo { bar1: ref mut _bar1, bar2: ref mut _bar2 } => {}
}
}
fn borrow_var_and_pattern() {
let mut foo = make_foo();
let bar1 = &mut foo.bar1;
match foo {
Foo { bar1: ref mut _bar1, bar2: _ } => {} //
//~^ ERROR cannot borrow
}
*bar1;
}
fn borrow_mut_and_base_imm() {
let mut foo = make_foo();
let bar1 = &mut foo.bar1.int1;
let _foo1 = &foo.bar1; //~ ERROR cannot borrow
let _foo2 = &foo; //~ ERROR cannot borrow
*bar1;
}
fn borrow_mut_and_base_mut() {
let mut foo = make_foo();
let bar1 = &mut foo.bar1.int1;
let _foo1 = &mut foo.bar1; //~ ERROR cannot borrow
*bar1;
}
fn borrow_mut_and_base_mut2() {
let mut foo = make_foo();
let bar1 = &mut foo.bar1.int1;
let _foo2 = &mut foo; //~ ERROR cannot borrow
*bar1;
}
fn borrow_imm_and_base_mut() {
let mut foo = make_foo();
let bar1 = &foo.bar1.int1;
let _foo1 = &mut foo.bar1; //~ ERROR cannot borrow
*bar1;
}
fn borrow_imm_and_base_mut2() {
let mut foo = make_foo();
let bar1 = &foo.bar1.int1;
let _foo2 = &mut foo; //~ ERROR cannot borrow
*bar1;
}
fn borrow_imm_and_base_imm() {
let mut foo = make_foo();
let bar1 = &foo.bar1.int1;
let _foo1 = &foo.bar1;
let _foo2 = &foo;
*bar1;
}
fn borrow_mut_and_imm() {
let mut foo = make_foo();
let bar1 = &mut foo.bar1;
let _foo1 = &foo.bar2;
*bar1;
}
fn borrow_mut_from_imm() {
let foo = make_foo();
let bar1 = &mut foo.bar1; //~ ERROR cannot borrow
*bar1;
}
fn borrow_long_path_both_mut() {
let mut foo = make_foo();
let bar1 = &mut foo.bar1.int1;
let _foo1 = &mut foo.bar2.int2;
*bar1;
}
fn main() {}
|