mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 14:00:54 +07:00
4 lines
89 B
Python
4 lines
89 B
Python
# PY-10839
|
|
class TestNestedComprehension:
|
|
x = [[n for _ in []] for n in []]
|
|
n = 2 |