mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 12:22:42 +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
|