mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 04:22:41 +00:00
12 lines
171 B
Lox
12 lines
171 B
Lox
class Foo {
|
|
init(arg) {
|
|
print "Foo.init(" + arg + ")";
|
|
this.field = "init";
|
|
}
|
|
}
|
|
|
|
fun init() {
|
|
print "not initializer";
|
|
}
|
|
|
|
init(); // expect: not initializer
|