2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 03:08:27 +08:00

test/py2llvm: test continue statement

This commit is contained in:
Sebastien Bourdeauducq 2014-09-27 00:27:30 +08:00
parent 4a5e398857
commit 2b948ba267

View File

@ -181,6 +181,8 @@ def array_test():
acc = 0
for i in range(5):
for j in range(5):
if i + j == 2:
continue
acc += a[i][j]
return acc