Files
openide/python/testData/resolve/GlobalInNestedFunction.py

10 lines
103 B
Python

foo = 0
def outer():
def inner():
global fo<ref>o
print(foo)
inner()
outer()