1 2 3 4 5 6
var a = "global"; { var a = "shadow"; print a; // expect: shadow } print a; // expect: global