mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
9 lines
150 B
Python
9 lines
150 B
Python
a = 1
|
|
|
|
def foo():
|
|
print <caret><warning descr="Local variable 'a' might be referenced before assignment">a</warning>
|
|
a = 2
|
|
print a
|
|
|
|
foo()
|