mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
(cherry picked from commit f939dd3ae0b9811a7389c82408f8e973bf5ef2a3) IJ-MR-5058 GitOrigin-RevId: 6b1b00fe2b7c31756a213d7729bd273095cfc9b6
11 lines
127 B
Python
11 lines
127 B
Python
class Foo:
|
|
def foo(self):
|
|
pass
|
|
|
|
|
|
class Baz:
|
|
@staticmethod
|
|
def baz():
|
|
foo = Foo()
|
|
foo.foo()
|