summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/basic/testContinueWithLabel3.js
blob: 14ef74bc66e92c78b7e1f209ec034a779900403c (plain)
1
2
3
4
5
6
// bug 511575 comment 3
outer:
for (var j = 0; j < 10; j++)
    for (var p in {x:1})
        if (p > "q")
            continue outer;