Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
AddGlobalStatement.py
blob: 50905325639cb8c35800dd43777dd22a72871260 [
file
] [
log
] [
blame
]
a
=
1
def
foo
():
print
<
caret
><
warning descr
=
"Local variable 'a' might be referenced before assignment"
>
a
</
warning
>
a
=
2
print
a
foo
()