mirror of
https://github.com/github/codeql.git
synced 2026-05-09 07:31:37 +02:00
9 lines
130 B
Python
9 lines
130 B
Python
a = 3
|
|
b = a
|
|
|
|
def f(x):
|
|
y = x + 2 # would expect flow to here from x
|
|
return y - 2 # would expect flow to here from y
|
|
|
|
c = f(a)
|