js/src/jit-test/tests/basic/nestedContinue.js

branch
TOR_BUG_3246
changeset 7
129ffea94266
equal deleted inserted replaced
-1:000000000000 0:eb2d16f2cd77
1 x = 10;
2 outer:
3 while (x < 10) {
4 while (x < 10) {
5 if (x < 10)
6 continue outer;
7 while (x < 10) {
8 y = 0;
9 }
10 }
11 }

mercurial