Files
wren/test/language/class/foreign_class_inherit_fields.wren
T

8 lines
168 B
Plaintext
Raw Normal View History

2015-08-15 12:07:53 -07:00
class Foo {
method() {
_field = "value"
}
}
foreign class Bar is Foo {} // expect runtime error: Foreign class 'Bar' may not inherit from a class with fields.