mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
6 lines
148 B
Python
6 lines
148 B
Python
def f(c):
|
|
if c:
|
|
x = 1
|
|
<warning descr="Local variable 'x' might be referenced before assignment">x</warning> += 1 #fail
|
|
return x
|