1
0
forked from Mirror/wren
Files
wren/test/super/no_superclass_method.wren
2014-04-19 11:51:36 -07:00

8 lines
161 B
Plaintext

class Base {}
class Derived is Base {
foo { super.doesNotExist } // expect runtime error: Base does not implement method 'doesNotExist'.
}
(new Derived).foo