Files
codeql/python/ql/test/experimental/dataflow/coverage/module_level.py
Rasmus Wriedt Larsen e4699e092d Python: Add test for iterable unpacking on module level
Currently doesn't work :O
2024-02-28 16:10:29 +01:00

8 lines
196 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) #$ MISSING: flow="SOURCE, l:-2 -> a"
SINK_F(b)