mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
15 lines
180 B
Python
15 lines
180 B
Python
class C:
|
|
def foobar(self):
|
|
a = 1
|
|
|
|
class B(C):
|
|
def barfoo(self):
|
|
d = 1
|
|
|
|
class F(C, B):
|
|
def raboof(self):
|
|
e = 1
|
|
|
|
C.foobar()
|
|
F.raboof()
|
|
B.foobar()
|