Files
wren/test/language/closure/shadow_closure_with_local.wren

12 lines
211 B
Plaintext
Raw Permalink Normal View History

2014-04-19 17:48:06 -07:00
{
var foo = "closure"
Fn.new {
2014-04-19 17:48:06 -07:00
{
System.print(foo) // expect: closure
2014-04-19 17:48:06 -07:00
var foo = "shadow"
System.print(foo) // expect: shadow
2014-04-19 17:48:06 -07:00
}
System.print(foo) // expect: closure
}.call()
2014-04-19 17:48:06 -07:00
}