mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 23:31:05 +07:00
10 lines
163 B
Python
10 lines
163 B
Python
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()
|