mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 11:10:14 +01:00
15
tests/basics/for_break.py
Normal file
15
tests/basics/for_break.py
Normal 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()
|
||||
Reference in New Issue
Block a user