# RUN: %python -m artiq.compiler.testbench.jit %s
# RUN: %python %s
cond, count = True, 0
while cond:
count += 1
cond = False
assert count == 1
while False:
pass
else:
assert True
cond = True
while True:
break
assert False
continue