Files
wren/test/variable/shadow_in_initializer.wren

9 lines
158 B
Plaintext
Raw Normal View History

2013-12-14 16:36:19 -08:00
// skip: Variables should not be in scope in their initializer.
{
var a = "outer"
{
var a = a + " inner"
IO.print(a) // expect: outer inner
2013-12-14 16:36:19 -08:00
}
}