rlox/interpreter/tests/lox/inheritance/constructor.lox
2024-09-01 19:15:55 +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