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.
16 lines
176 B
16 lines
176 B
4 years ago
|
# 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()
|