michael@0: function testUndemoteLateGlobalSlots() { michael@0: for each (aaa in ["", "", 0/0, ""]) { michael@0: ++aaa; michael@0: for each (bbb in [0, "", aaa, "", 0, "", 0/0]) { michael@0: } michael@0: } michael@0: delete aaa; michael@0: delete bbb; michael@0: return "ok"; michael@0: } michael@0: assertEq(testUndemoteLateGlobalSlots(), "ok");