Files
wren/test/super/no_superclass_method.wren

8 lines
178 B
Plaintext

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