Files
openide/python/testData/resolve/InstanceAttrBelowAndOtherMethodBelow.py
Andrey Vlasovskikh 0c7282248c PY-45206 Added failing test for bug found in IJ-CR-3996
GitOrigin-RevId: 6ac6a440db445254701fb5801004dd1630c44677
2021-03-30 14:26:55 +00:00

13 lines
186 B
Python

class C:
def f(self):
x = self.foo
# <ref>
self.foo = 1
return x
def g(self):
self.foo = 0
def h(self):
self.foo = 0