mlox/lox.t/inheritance/constructor.lox

14 lines
158 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
class A {
init(param) {
this.field = param;
}
test() {
print this.field;
}
}
class B < A {}
var b = B("value");
b.test(); // expect: value