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_super.py

16 lines
176 B

# Super is not defined
class A(B):
x:int = 1
z:int = 2
# Super is not a class
class B(z):
x:int = 1
# Cannot extend special classes
class C(int):
x:int = 1
A()