rlox/interpreter/tests/lox/variable/local_from_method.lox

9 lines
106 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
var foo = "variable";
class Foo {
method() {
print foo;
}
}
Foo().method(); // expect: variable