forked from Mirror/wren
8 lines
161 B
Plaintext
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
|