Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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
()