Files
wren/test/language/constructor/not_inherited.wren

8 lines
137 B
Plaintext

class Foo {
construct base() {}
}
class Bar is Foo {}
Bar.base() // expect runtime error: Bar metaclass does not implement 'base()'.