mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
114 B
Python
11 lines
114 B
Python
# constant
|
|
foo = 42
|
|
|
|
import base
|
|
|
|
def passOn(x):
|
|
return x
|
|
|
|
# depends on other constant
|
|
bar = passOn(base.foo)
|