Files
openide/python/testData/inspections/PyRedeclarationInspection/nestedComprehension.py

4 lines
89 B
Python

# PY-10839
class TestNestedComprehension:
x = [[n for _ in []] for n in []]
n = 2