{
var foo = "closure"
new
this
ClassName.new()
Fn.new {
IO.print(foo) // expect: closure
var foo = "shadow"
IO.print(foo) // expect: shadow
}
}.call()