Files
fitermayandSemyon Proshev 027fe9bb55 PY-1177 Fixed: Control flow analysis doesn't detect while/break
Handle control flow for statically true condition in while statement
2016-10-03 15:21:37 +03:00

5 lines
49 B
Python

while True:
a = 1
break
print(a) # pass