summaryrefslogtreecommitdiff
path: root/tests/functional/ext/while_used/while_used.py
blob: 848da0d51509fed88674e0f6e66a3e96ac814c0a (plain)
1
2
3
4
5
6
7
8
9
10
"""Functional test"""

while True:  # [while-used]
    print("asdf")

def fff():
    "zxcv"
    i = 0
    while i < 10:  # [while-used]
        i += 1