summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug703544.js
blob: 87d1a1b0d0b0bb4a68a86be484537a698305d35b (plain)
1
2
3
4
5
6
7
gczeal(4);
function testInterpreterReentry7() {
    var arr = [0, 1, 2, 3, 4];
    for (var i = (1); i < 5; i++)
        arr[i] = "grue";
}
testInterpreterReentry7();