Files
codeql/python/ql/test/library-tests/dataflow/coverage/module_level.py
2024-04-23 09:40:44 +02:00

8 lines
187 B
Python

# this test has code on module level, which works in slightly different ways than when
# inside a function
t = (SOURCE, NONSOURCE)
a, b = t
SINK(a) #$ flow="SOURCE, l:-2 -> a"
SINK_F(b)