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

8 lines
137 B
Plaintext
Raw Normal View History

2015-07-10 09:18:22 -07:00
class Foo {
construct base() {}
2015-07-10 09:18:22 -07:00
}
class Bar is Foo {}
Bar.base() // expect runtime error: Bar metaclass does not implement 'base()'.