mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
25 lines
215 B
Python
25 lines
215 B
Python
|
|
def f1(arg):
|
|
return arg
|
|
|
|
def f2(arg):
|
|
return f1(arg)
|
|
|
|
def f3(arg):
|
|
return f2(arg)
|
|
|
|
def f4(arg):
|
|
return f3(arg)
|
|
|
|
def f5(arg):
|
|
return f4(arg)
|
|
|
|
def f6(arg):
|
|
return f5(arg)
|
|
|
|
x = f6(SOURCE)
|
|
|
|
x
|
|
|
|
|