mlox/lox.t/super/call_other_method.lox

16 lines
202 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
class Base {
foo() {
print "Base.foo()";
}
}
class Derived < Base {
bar() {
print "Derived.bar()";
super.foo();
}
}
Derived().bar();
// expect: Derived.bar()
// expect: Base.foo()