You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ChocoPy/pa2-tests/core/bad_class_method_override_a...

9 lines
80 B

class A(object):
f:int = 3
class B(A):
def f(self:B) -> int:
return 3
A()