rlox/interpreter/tests/lox/variable/local_from_method.lox
2024-09-01 19:15:55 +02:00

9 lines
106 B
Lox

var foo = "variable";
class Foo {
method() {
print foo;
}
}
Foo().method(); // expect: variable