Files
codeql/python/ql/test/library-tests/ControlFlow/ssa/phi-nodes/test4.py
2018-11-19 15:15:54 +00:00

16 lines
148 B
Python

def del1():
x = 0
del x
x = 0
return x
def del2():
x = 0
if random():
del x
else:
x = 1
return x