Skip to content

Commit b974d6f

Browse files
committed
test(patterns): add borrowck tests for combination of pattern features
Adds borrowck tests for the following features: - bindings_after_at - or_patterns - slice_patterns - box_patterns
1 parent 823ff8c commit b974d6f

2 files changed

+432
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
// Tests using a combination of pattern features has the expected borrow checking behavior
2+
#![feature(bindings_after_at)]
3+
#![feature(or_patterns)]
4+
#![feature(box_patterns)]
5+
6+
#![feature(move_ref_pattern)]
7+
8+
enum Test {
9+
Foo,
10+
Bar,
11+
_Baz,
12+
}
13+
14+
// bindings_after_at + slice_patterns
15+
16+
fn bindings_after_at_slice_patterns_move_binding(x: [String; 4]) {
17+
match x {
18+
a @ [.., _] => (),
19+
_ => (),
20+
};
21+
22+
&x;
23+
//~^ ERROR borrow of moved value
24+
}
25+
26+
fn bindings_after_at_slice_patterns_borrows_binding_mut(mut x: [String; 4]) {
27+
let r = match x {
28+
ref mut foo @ [.., _] => Some(foo),
29+
_ => None,
30+
};
31+
32+
&x;
33+
//~^ ERROR cannot borrow
34+
35+
drop(r);
36+
}
37+
38+
fn bindings_after_at_slice_patterns_borrows_slice_mut1(mut x: [String; 4]) {
39+
let r = match x {
40+
ref foo @ [.., ref mut bar] => (),
41+
//~^ ERROR cannot borrow
42+
_ => (),
43+
};
44+
45+
drop(r);
46+
}
47+
48+
fn bindings_after_at_slice_patterns_borrows_slice_mut2(mut x: [String; 4]) {
49+
let r = match x {
50+
[ref foo @ .., ref bar] => Some(foo),
51+
_ => None,
52+
};
53+
54+
&mut x;
55+
//~^ ERROR cannot borrow
56+
57+
drop(r);
58+
}
59+
60+
fn bindings_after_at_slice_patterns_borrows_both(mut x: [String; 4]) {
61+
let r = match x {
62+
ref foo @ [.., ref bar] => Some(foo),
63+
_ => None,
64+
};
65+
66+
&mut x;
67+
//~^ ERROR cannot borrow
68+
69+
drop(r);
70+
}
71+
72+
// bindings_after_at + or_patterns
73+
74+
fn bindings_after_at_or_patterns_move(x: Option<Test>) {
75+
match x {
76+
foo @ Some(Test::Foo | Test::Bar) => (),
77+
_ => (),
78+
}
79+
80+
&x;
81+
//~^ ERROR borrow of moved value
82+
}
83+
84+
fn bindings_after_at_or_patterns_borrows(mut x: Option<Test>) {
85+
let r = match x {
86+
ref foo @ Some(Test::Foo | Test::Bar) => Some(foo),
87+
_ => None,
88+
};
89+
90+
&mut x;
91+
//~^ ERROR cannot borrow
92+
93+
drop(r);
94+
}
95+
96+
fn bindings_after_at_or_patterns_borrows_mut(mut x: Option<Test>) {
97+
let r = match x {
98+
ref mut foo @ Some(Test::Foo | Test::Bar) => Some(foo),
99+
_ => None,
100+
};
101+
102+
&x;
103+
//~^ ERROR cannot borrow
104+
105+
drop(r);
106+
}
107+
108+
// bindings_after_at + box_patterns
109+
110+
fn bindings_after_at_box_patterns_borrows_both(mut x: Option<Box<String>>) {
111+
let r = match x {
112+
ref foo @ Some(box ref s) => Some(foo),
113+
_ => None,
114+
};
115+
116+
&mut x;
117+
//~^ ERROR cannot borrow
118+
119+
drop(r);
120+
}
121+
122+
fn bindings_after_at_box_patterns_borrows_mut(mut x: Option<Box<String>>) {
123+
match x {
124+
ref foo @ Some(box ref mut s) => (),
125+
//~^ ERROR cannot borrow
126+
_ => (),
127+
};
128+
}
129+
130+
// bindings_after_at + slice_patterns + or_patterns
131+
132+
fn bindings_after_at_slice_patterns_or_patterns_moves(x: [Option<Test>; 4]) {
133+
match x {
134+
a @ [.., Some(Test::Foo | Test::Bar)] => (),
135+
_ => (),
136+
};
137+
138+
&x;
139+
//~^ ERROR borrow of moved value
140+
}
141+
142+
fn bindings_after_at_slice_patterns_or_patterns_borrows_binding(mut x: [Option<Test>; 4]) {
143+
let r = match x {
144+
ref a @ [ref b @ .., Some(Test::Foo | Test::Bar)] => Some(a),
145+
_ => None,
146+
};
147+
148+
&mut x;
149+
//~^ ERROR cannot borrow
150+
151+
drop(r);
152+
}
153+
154+
fn bindings_after_at_slice_patterns_or_patterns_borrows_slice(mut x: [Option<Test>; 4]) {
155+
let r = match x {
156+
ref a @ [ref b @ .., Some(Test::Foo | Test::Bar)] => Some(b),
157+
_ => None,
158+
};
159+
160+
&mut x;
161+
//~^ ERROR cannot borrow
162+
163+
drop(r);
164+
}
165+
166+
// bindings_after_at + slice_patterns + box_patterns
167+
168+
fn bindings_after_at_slice_patterns_box_patterns_borrows(mut x: [Option<Box<String>>; 4]) {
169+
let r = match x {
170+
[_, ref a @ Some(box ref b), ..] => Some(a),
171+
_ => None,
172+
};
173+
174+
&mut x;
175+
//~^ ERROR cannot borrow
176+
177+
drop(r);
178+
}
179+
180+
// bindings_after_at + slice_patterns + or_patterns + box_patterns
181+
182+
fn bindings_after_at_slice_patterns_or_patterns_box_patterns_borrows(
183+
mut x: [Option<Box<Test>>; 4]
184+
) {
185+
let r = match x {
186+
[_, ref a @ Some(box Test::Foo | box Test::Bar), ..] => Some(a),
187+
_ => None,
188+
};
189+
190+
&mut x;
191+
//~^ ERROR cannot borrow
192+
193+
drop(r);
194+
}
195+
196+
fn bindings_after_at_slice_patterns_or_patterns_box_patterns_borrows_mut(
197+
mut x: [Option<Box<Test>>; 4]
198+
) {
199+
let r = match x {
200+
[_, ref mut a @ Some(box Test::Foo | box Test::Bar), ..] => Some(a),
201+
_ => None,
202+
};
203+
204+
&x;
205+
//~^ ERROR cannot borrow
206+
207+
drop(r);
208+
}
209+
210+
fn bindings_after_at_slice_patterns_or_patterns_box_patterns_borrows_binding(
211+
mut x: [Option<Box<Test>>; 4]
212+
) {
213+
let r = match x {
214+
ref a @ [_, ref b @ Some(box Test::Foo | box Test::Bar), ..] => Some(a),
215+
_ => None,
216+
};
217+
218+
&mut x;
219+
//~^ ERROR cannot borrow
220+
221+
drop(r);
222+
}
223+
224+
fn main() {}

0 commit comments

Comments
 (0)