summaryrefslogtreecommitdiff
path: root/python/testData/hierarchy/call/Static/Simple/main.py
blob: 9073f3df5d8775786e889b94b0e23cde290b9cd2 (plain)
1
2
3
4
5
6
7
8
9
10
def func1():
    pass

def func2():
    target_func()

def target_func():
    func1()

target_<caret>func()