Files
openide/python/testData/resolve/InstanceAttrBelowDifferentBranchesOfSameIfStatement.py
2021-03-30 14:26:58 +00:00

8 lines
140 B
Python

class C:
def f(self, c):
if c:
return self.foo
# <ref>
else:
self.foo = 1