mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 2f6eb873d6321ef00d293377ec2c97195f72da21
9 lines
235 B
Python
9 lines
235 B
Python
class B:
|
|
def foo(self, arg1, arg2=None):
|
|
pass
|
|
|
|
|
|
class C(B):
|
|
def foo<warning descr="Signature of method 'C.foo()' does not match signature of the base method in class 'B'">(self, arg1=None)</warning>: #fail
|
|
pass
|