leo/asg/tests/pass/statements/conditional/for_loop.leo

14 lines
177 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function main(a: bool) {
let b = 0u32;
2021-01-25 18:17:42 +03:00
if a {
for i in 0..4 {
b += i;
}
}
const r: u32 = a ? 6 : 0;
2021-01-25 18:17:42 +03:00
console.assert(r == b);
}