Files
wren/test/language/constructor/not_inherited.wren
Bob Nystrom eff4485a56 Clean up definition syntax:
- Don't use "def" on constructors.
- Put "foreign" and "static" before "def".
2015-12-18 06:59:49 -08:00

8 lines
137 B
Plaintext

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