mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01:00
test/class-super: Expose super() breakage.
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
class Base:
|
||||
|
||||
def __init__(self):
|
||||
self.a = 1
|
||||
|
||||
def meth(self):
|
||||
print("in Base meth")
|
||||
print("in Base meth", self.a)
|
||||
|
||||
class Sub(Base):
|
||||
|
||||
|
||||
Reference in New Issue
Block a user