mlox/lox.t/inheritance/constructor.lox
2024-08-03 02:44:12 +02:00

14 lines
158 B
Lox

class A {
init(param) {
this.field = param;
}
test() {
print this.field;
}
}
class B < A {}
var b = B("value");
b.test(); // expect: value