third_party.pylibs.pylint.src/test/input/func_continue_not_in_loop.py
root 4becf6f9e5 forget the past.
forget the past.
2006-04-26 10:48:09 +00:00

15 lines
211 B
Python

"""this module produces a SyntaxError at execution time"""
__revision__ = None
def run():
"""simple function"""
if True:
continue
else:
break
if __name__ == '__main__':
run()