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