mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
148 B
Python
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
|
|
|