mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
230 B
Python
15 lines
230 B
Python
class Base(object):
|
|
|
|
def meth(self):
|
|
pass
|
|
|
|
class Derived1(Base):
|
|
|
|
def uses_meth(self):
|
|
return self.meth()
|
|
|
|
class Derived2(Derived1):
|
|
|
|
def uses_meth(self):
|
|
return self.meth()
|