summaryrefslogtreecommitdiff
path: root/python/testData/intentions/beforeSplitIf.py
blob: fc52062b94ffcd4d40662ac9addceb18e161a01f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
def foo():
    i<caret>f a + 2 > 3 and b < 4:
    #comment
        a = a and b
        b = 4
    elif a > 20:
        pass
    elif b > 20:
        b = a + 2
        foo()
    else:
        b = a and b
        a = 4