mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
9 lines
133 B
Python
9 lines
133 B
Python
class C:
|
|
def __init__(self, foo):
|
|
self.foo = foo
|
|
|
|
|
|
def method(foo1, foo):
|
|
method(foo1, foo1)
|
|
method(C(1).foo, 2)
|