summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug779125.js
blob: 1bfd292579dd85274b1f3036c2eb68c615ac5edf (plain)
1
2
3
4
5
6
7
function test() {
    for (var i = 0; i < 60; i++) {
        x = ''.charAt(-1);
        assertEq(x, "");
    }
}
test();