blob: 4ef9eba2748598cd414d463dc28e670a5f1d9496 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class B:
2 def foo(self, arg1, arg2=None):
3 pass
4
5
6class C(B):
7 def foo<warning descr="Signature of method 'C.foo()' does not match signature of base method in class 'B'">(self, arg1=None)</warning>: #fail
8 pass