michael@0: // The second for-loop is only reachable via the catch block, which Ion michael@0: // does not compile. michael@0: for (;;) { michael@0: try { michael@0: throw 3; michael@0: } catch(e) { michael@0: break; michael@0: } michael@0: } michael@0: for (var i = 0; i < 15; i++) {}