aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/v4/switch.2.js
blob: 60d59c161be8dd5e8f941600ba1abfb8592d0404 (plain)
1
2
3
4
5
6
7
8
9
10
11
var i;
for (i = 0; i < 2; ++i) {
    switch ("a") {
        case "a":
            continue;
        default:
            break;
    }
}
if (i != 2)
    print("loop did not run often enough");