michael@0: function f() { michael@0: var i = 0; michael@0: outer: michael@0: for (var x = 0; x < 10; x++) { michael@0: while (true) { michael@0: if (i > 150) michael@0: continue outer; michael@0: i++; michael@0: } michael@0: } michael@0: assertEq(i, 151); michael@0: } michael@0: f();