summaryrefslogtreecommitdiff
path: root/test/input/func_noerror_crash_122793.py
blob: 1d14d8e9b5102e7b12a62570bad9789470e369b0 (plain)
1
2
3
4
5
6
7
8
9
# pylint: disable=C0121
"""https://www.logilab.org/ticket/122793"""

def gen():
    """dumb generator"""
    yield

GEN = gen()
GEN.next()