mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
21 lines
166 B
Python
21 lines
166 B
Python
from mod import cond
|
|
|
|
del u1
|
|
|
|
if cond:
|
|
u2 = 0
|
|
del u2
|
|
|
|
del u3
|
|
use(u3)
|
|
|
|
|
|
def f():
|
|
del u1
|
|
|
|
if cond:
|
|
u2 = 0
|
|
del u2
|
|
|
|
del u3
|
|
use(u3) |