mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
8 lines
187 B
Python
8 lines
187 B
Python
def test1(c, xs):
|
|
if c:
|
|
y = 1
|
|
print(<warning descr="Local variable 'y' might be referenced before assignment">y</warning>)
|
|
for x in xs:
|
|
continue
|
|
z = 1
|