Files
openide/python/testData/resolve/GlobalDefinedLocally2.py
Petrandintellij-monorepo-bot 7f51ea7313 PY-82115 Incorrect resolve of nonlocal and global variables
GitOrigin-RevId: c51517699fe512c22687282ed8d46ffe56e22ac1
2025-06-23 14:59:09 +00:00

12 lines
133 B
Python

def outer1():
s = 1
def inner():
global s
s = "aba"
inner()
def outer2():
print(s)
# <ref>