aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/l/lambda_use_before_assign.py
blob: af2775cae81bffa8f831965e0527a6a765d13a4f (plain)
1
2
3
4
5
6
7
8
"""https://www.logilab.net/elo/ticket/18862"""
from __future__ import print_function
__revision__ = 1
def function():
    """hop"""
    ggg = lambda: xxx
    xxx = 1
    print(ggg())