mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
13 lines
186 B
Python
13 lines
186 B
Python
class C:
|
|
def g(self):
|
|
self.foo = 0
|
|
|
|
def h(self):
|
|
self.foo = 0
|
|
|
|
def f(self):
|
|
x = self.foo
|
|
# <ref>
|
|
self.foo = 1
|
|
return x
|