Python: Add test for iterable unpacking on module level

Currently doesn't work :O
This commit is contained in:
Rasmus Wriedt Larsen
2024-02-28 16:10:29 +01:00
parent 297a17975d
commit e4699e092d

View File

@@ -0,0 +1,7 @@
# 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)