michael@0: function outerline(){ michael@0: var i=0; michael@0: var j=0; michael@0: michael@0: for (i = 3; i<= 100000; i+=2) michael@0: { michael@0: for (j = 3; j < 1000; j+=2) michael@0: { michael@0: if ((i & 1) == 1) michael@0: break; michael@0: } michael@0: } michael@0: return "ok"; michael@0: } michael@0: assertEq(outerline(), "ok");