Files
python-uncompyle6/test/simple_source/bug22/01_lambda_call.py
2021-06-15 22:42:55 -04:00

5 lines
122 B
Python

# From https://github.com/rocky/python-uncompyle6/issues/350
# This is RUNNABLE!
a = (lambda x: x)(abs)
assert a(-3) == 3