mlox/lox.t/constructor/init_not_method.lox

12 lines
171 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
class Foo {
init(arg) {
print "Foo.init(" + arg + ")";
this.field = "init";
}
}
fun init() {
print "not initializer";
}
init(); // expect: not initializer