mlox/lox.t/closure/shadow_closure_with_local.lox

12 lines
193 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
{
var foo = "closure";
fun f() {
{
print foo; // expect: closure
var foo = "shadow";
print foo; // expect: shadow
}
print foo; // expect: closure
}
f();
}