forked from noir-lang/noir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontrol_flow.rs
More file actions
420 lines (385 loc) · 8.29 KB
/
Copy pathcontrol_flow.rs
File metadata and controls
420 lines (385 loc) · 8.29 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
use crate::tests::{assert_no_errors, check_errors};
#[test]
fn resolve_for_expr() {
let src = r#"
fn main(x : u64) {
for i in 1..20 {
let _z = x + i;
};
}
"#;
assert_no_errors(src);
}
#[test]
fn resolve_for_expr_incl() {
let src = r#"
fn main(x : u64) {
for i in 1..=20 {
let _z = x + i;
};
}
"#;
assert_no_errors(src);
}
#[test]
fn for_loop_empty_range() {
let src = r#"
fn main() {
let mut x = 0;
for _i in 0..0 {
x = 1;
}
assert(x == 0);
}
"#;
assert_no_errors(src);
}
#[test]
fn for_loop_backwards_range() {
let src = r#"
fn main() {
let mut x = 0;
for _i in 10..5 {
x = 1;
}
assert(x == 0);
}
"#;
assert_no_errors(src);
}
#[test]
fn for_loop_single_elem_inclusive_max_value() {
let src = r#"
fn main() {
let mut count = 0;
for i in 4294967295..=4294967295 {
count += 1;
let _x: u32 = i;
}
assert(count == 1);
}
"#;
assert_no_errors(src);
}
#[test]
fn for_loop_mutate_induction_var() {
let src = r#"
fn main() {
for i in 0..10 {
i = 5;
^ Variable `i` must be mutable to be assigned to
}
}
"#;
check_errors(src);
}
#[test]
fn break_and_continue_outside_loop() {
let src = r#"
pub unconstrained fn foo() {
continue;
^^^^^^^^^ continue is only allowed within loops
}
pub unconstrained fn bar() {
break;
^^^^^^ break is only allowed within loops
}
"#;
check_errors(src);
}
#[test]
fn break_in_while_condition_without_enclosing_loop() {
// A `break` in a `while` condition targets the *enclosing* loop (the condition is the loop
// guard, evaluated outside the while's body scope, as in SSA codegen and the comptime
// interpreter). With no enclosing loop it is a break outside any loop, which must be a clean
// error rather than a backend panic.
let src = r#"
pub unconstrained fn foo(cond: bool) {
let mut i = 0;
while ({
if cond {
break;
^^^^^^ break is only allowed within loops
}
i < 3
}) {
i += 1;
}
}
"#;
check_errors(src);
}
#[test]
fn break_in_while_condition_targets_enclosing_loop() {
// The same `break` is accepted when the `while` is nested in another loop: it targets that
// enclosing loop, which therefore counts as having a break.
let src = r#"
pub unconstrained fn foo(cond: bool) {
loop {
let mut i = 0;
while ({
if cond {
break;
}
i < 3
}) {
i += 1;
}
}
}
"#;
assert_no_errors(src);
}
#[test]
fn break_in_infix_operand() {
let src = r#"
unconstrained fn main() {
let _ = 1 + { break; };
^^^^^^^^^^^^^^ Types in a binary operation should match, but found Field and ()
^^^^^^ break is only allowed within loops
}
"#;
check_errors(src);
}
#[test]
fn wrong_type_in_for_range() {
let src = r#"
pub fn foo() {
for _ in true..false {
^^^^ The type bool cannot be used in a for loop
}
}
"#;
check_errors(src);
}
#[test]
fn errors_on_if_without_else_type_mismatch() {
let src = r#"
fn main() {
if true {
1
^ Expected type Field, found type ()
}
}
"#;
check_errors(src);
}
#[test]
fn if_else_type_mismatch() {
let src = r#"
fn main() {
let _x = if true {
let _ = 1;
} else {
2
^ Expected type (), found type Field
};
}
"#;
check_errors(src);
}
#[test]
fn errors_on_struct_literal_used_in_if_condition() {
let src = r#"
struct MyStruct {
field: bool,
}
fn main() {
if MyStruct { field: true }.field {}
^^^^^^^^^^^^^^^^^^^^^^^^ Struct literals are not allowed in `if` conditions
~~~~~~~~~~~~~~~~~~~~~~~~ Surround the struct literal with parentheses, for example: `if (MyStruct { field: true }).field { ... }`
}
"#;
check_errors(src);
}
#[test]
fn errors_on_empty_loop_no_break() {
let src = r#"
fn main() {
// Safety: test
unsafe {
foo()
}
}
unconstrained fn foo() {
loop {}
^^^^ `loop` must have at least one `break` in it
~~~~ Infinite loops are disallowed
}
"#;
check_errors(src);
}
#[test]
fn errors_on_loop_without_break() {
let src = r#"
fn main() {
// Safety: test
unsafe {
foo()
}
}
unconstrained fn foo() {
let mut x = 1;
loop {
^^^^ `loop` must have at least one `break` in it
~~~~ Infinite loops are disallowed
x += 1;
bar(x);
}
}
fn bar(_: Field) {}
"#;
check_errors(src);
}
#[test]
fn errors_on_loop_without_break_with_nested_loop() {
let src = r#"
fn main() {
// Safety: test
unsafe {
foo()
}
}
unconstrained fn foo() {
let mut x = 1;
loop {
^^^^ `loop` must have at least one `break` in it
~~~~ Infinite loops are disallowed
x += 1;
bar(x);
loop {
x += 2;
break;
}
}
}
fn bar(_: Field) {}
"#;
check_errors(src);
}
#[test]
fn break_in_nested_and_outer_loops() {
let src = r#"
unconstrained fn main() {
let mut x = 1;
loop {
x += 1;
loop {
x += 2;
break; // Breaks from nested loop only
}
if x > 2 {
break; // Breaks from outer loop
}
}
}
"#;
assert_no_errors(src);
}
#[test]
fn continue_in_loop() {
let src = r#"
unconstrained fn main() {
let mut x = 0;
loop {
x += 1;
if x < 5 {
continue;
}
break;
}
for i in 0..10 {
if i == 5 {
continue;
}
}
while x > 0 {
x -= 1;
if x == 3 {
continue;
}
}
}
"#;
assert_no_errors(src);
}
#[test]
fn errors_if_for_body_type_is_not_unit() {
let src = r#"
fn main() {
for _ in 0..1 {
1
^ Expected type (), found type Field
}
}
"#;
check_errors(src);
}
#[test]
fn errors_if_loop_body_type_is_not_unit() {
let src = r#"
unconstrained fn main() {
loop {
if false { break; }
1
^ Expected type (), found type Field
}
}
"#;
check_errors(src);
}
#[test]
fn errors_if_while_body_type_is_not_unit() {
let src = r#"
unconstrained fn main() {
while 1 == 1 {
1
^ Expected type (), found type Field
}
}
"#;
check_errors(src);
}
#[test]
fn overflowing_int_in_for_loop() {
let src = r#"
fn main() {
for _ in -2..-1 {}
^^ The value `-2` cannot fit into `u32` which has range `0..=4294967295`
^^ The value `-1` cannot fit into `u32` which has range `0..=4294967295`
}
"#;
check_errors(src);
}
#[test]
fn break_type_mismatch() {
let src = r#"
unconstrained fn main() {
loop {
if true {
break;
} else {
5
^ Expected type (), found type Field
};
}
}
"#;
check_errors(src);
}
#[test]
fn continue_type_mismatch() {
let src = r#"
unconstrained fn main() {
for _ in 0..1 {
if true {
continue;
} else {
5
^ Expected type (), found type Field
}
}
}
"#;
check_errors(src);
}