mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
11 lines
200 B
Python
11 lines
200 B
Python
def has_type_int():
|
|
return untaceable()
|
|
|
|
def has_type_float():
|
|
return untaceable2()
|
|
|
|
def test():
|
|
#Ignore before this comment
|
|
x = has_type_int()
|
|
y = has_type_float()
|
|
return x, y |