Files
openide/python/testData/resolve/GlobalNotResolvedToLocalNameInOuterScope.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

6 lines
82 B
Python

def outer():
s = "aba"
def inner():
global s
# <ref>