1 2 3 4 5 6 7 8
{ var a = "outer" { System.print(a) // expect: outer var a = "inner" System.print(a) // expect: inner } }