mirror of
https://github.com/github/codeql.git
synced 2026-05-15 11:49:28 +02:00
7 lines
73 B
Python
7 lines
73 B
Python
|
|
|
|
def illegal_for_loop(seq = None):
|
|
for x in seq:
|
|
print (x)
|
|
|