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