blob: 539cc26f7ee60b7a9d6c98bac4cd53ab4e514a72 [file] [log] [blame]
def f(c):
if c:
x = 1
<warning descr="Local variable 'x' might be referenced before assignment">x</warning> += 1 #fail
return x