Files
wren/test/super/no_superclass_method.wren
T

8 lines
161 B
Plaintext
Raw Normal View History

2014-04-19 11:51:36 -07:00
class Base {}
class Derived is Base {
foo { super.doesNotExist } // expect runtime error: Base does not implement method 'doesNotExist'.
}
(new Derived).foo