blob: 539cc26f7ee60b7a9d6c98bac4cd53ab4e514a72 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001def f(c):
2 if c:
3 x = 1
4 <warning descr="Local variable 'x' might be referenced before assignment">x</warning> += 1 #fail
5 return x