summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug642198.js
blob: dec6e7294f2b4e876083fd25517d92d34039419f (plain)
1
2
3
4
5
6
7
8
9
function test() {
    for(var e=1.2; true; e=20.2) {
        if (e > 10)
            break;
    }
}
test();