Files
openide/python/testData/resolve/LambdaToClass.py
2010-10-27 21:55:05 +04:00

7 lines
103 B
Python

class TestOne():
x = lambda self: TestTwo()
# <ref>
class TestTwo():
pass