summaryrefslogtreecommitdiff
path: root/test/input/func_continue_not_in_loop.py
blob: 4186aa5fdaee4042ffa85e4c84493825865c46d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""this module produces a SyntaxError at execution time"""

__revision__ = None

def run():
    """simple function"""
    if True:
        continue
    else:
        break

if __name__ == '__main__':
    run()