forked from Mirror/wren
8 lines
137 B
Plaintext
8 lines
137 B
Plaintext
class Foo {
|
|
construct base() {}
|
|
}
|
|
|
|
class Bar is Foo {}
|
|
|
|
Bar.base() // expect runtime error: Bar metaclass does not implement 'base()'.
|