aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/python/break_continue.py
blob: aabd677f8e73bfc0fd42bad376a4924ab192c769 (plain) (blame)
1
2
3
4
5
6
7
8
9
def f():
    for x in range(1, 2):
        if x == 1:
            break

def f():
    for x in range(1, 2):
        if x == 1:
            continue