mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
7 lines
183 B
Python
7 lines
183 B
Python
class TestForLoopBody:
|
|
def foo():
|
|
pass
|
|
|
|
for _ in [1, 2, 3]:
|
|
def <warning descr="Redeclared 'foo' defined above without usage">foo</warning>():
|
|
pass |