tests: Add test for break in for.

For #635 / 25c84643b6.
store-consts
Paul Sokolovsky 2014-05-31 00:43:41 +03:00
parent 25c84643b6
commit ccd0e0afcd
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
# Testcase for break in a for [within bunch of other code]
# https://github.com/micropython/micropython/issues/635
def foo():
seq = [1, 2, 3]
v = 100
i = 5
while i > 0:
print(i)
for a in seq:
if a == 2:
break
i -= 1
foo()