mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 19:16:40 +07:00
7 lines
176 B
Python
7 lines
176 B
Python
def test_while_loop(c):
|
|
def foo():
|
|
pass
|
|
|
|
while True:
|
|
def <warning descr="Redeclared 'foo' defined above without usage">foo</warning>():
|
|
pass |