mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 04:12:42 +00:00
9 lines
159 B
Lox
9 lines
159 B
Lox
class Base {}
|
|
|
|
class Derived < Base {
|
|
foo() {
|
|
super.doesNotExist(1); // expect runtime error: Undefined property 'doesNotExist'.
|
|
}
|
|
}
|
|
|
|
Derived().foo();
|