Files
wren/test/language/inheritance/do_not_inherit_static_methods.wren
T

8 lines
170 B
Plaintext
Raw Normal View History

2014-01-17 17:29:10 -08:00
class Foo {
2015-09-15 07:46:09 -07:00
static methodOnFoo { System.print("foo") }
2014-01-17 17:29:10 -08:00
}
class Bar is Foo {}
Bar.methodOnFoo // expect runtime error: Bar metaclass does not implement 'methodOnFoo'.