summaryrefslogtreecommitdiff
path: root/pylint/test/functional/yield_outside_func.py
blob: 5824bc0c7e635f93d9ad03e22e0984d784ffa7f5 (plain)
1
2
3
4
"""This is gramatically correct, but it's still a SyntaxError"""
yield 1  # [yield-outside-function]

LAMBDA_WITH_YIELD = lambda: (yield)