michael@0: var f = 99; michael@0: michael@0: function g(a) { michael@0: if (a) { michael@0: var e = 55; michael@0: function f() { michael@0: print("f"); michael@0: } michael@0: assertEq(f == 99, false); michael@0: } michael@0: } michael@0: michael@0: g(true);