Files
openide/python/testData/highlighting/continueOutsideOfLoop.py
Semyon Proshev d50b3ad7ea Don't mark continue in finally block as an error in Python 3.8+ (PY-36003)
Enable a test that no one is care of.

GitOrigin-RevId: ccc520d6ab6d40117b5ff69ffe908ef135c6a08b
2019-08-15 22:02:02 +03:00

9 lines
182 B
Python

for x in [1, 2, 3]:
pass
else:
<error descr="'continue' outside loop">continue</error>
while True:
pass
else:
<error descr="'continue' outside loop">continue</error>