Files
openide/python/testData/codeInsight/controlflow/trybreak.py
T
Oleg Shpynov 28e27205c4 PY-579
Incorrect "code is unreachable" warning
2010-02-19 17:19:51 +03:00

7 lines
110 B
Python

def foo():
try:
for i in bar:
break
except:
raise Exception()
return 3