Files
wren/test/super/no_superclass_method.wren
T

8 lines
178 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' with 0 arguments.
2014-04-19 11:51:36 -07:00
}
(new Derived).foo