mirror of
https://github.com/github/codeql.git
synced 2025-12-24 20:56:33 +01:00
7 lines
73 B
Python
7 lines
73 B
Python
|
|
|
|
def illegal_for_loop(seq = None):
|
|
for x in seq:
|
|
print (x)
|
|
|