Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
AddGlobalExistingStatement.py
blob: 330f7e168ec9aa0ba9d9171462ec931924e105d2 [
file
] [
log
] [
blame
]
a
=
1
def
foo
():
global
b
print
<
caret
><
warning descr
=
"Local variable 'a' might be referenced before assignment"
>
a
</
warning
>
a
=
2
print
a
foo
()