rlox/interpreter/tests/lox/class/reference_self.lox

7 lines
93 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
class Foo {
returnSelf() {
return Foo;
}
}
print Foo().returnSelf(); // expect: Foo