mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 04:12:42 +00:00
7 lines
141 B
Lox
7 lines
141 B
Lox
class Base {
|
|
foo() {
|
|
super.doesNotExist(1); // Error at 'super': Can't use 'super' in a class with no superclass.
|
|
}
|
|
}
|
|
|
|
Base().foo();
|