summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-986864.js
blob: abb8de6b2b5a8f563b761b77043649f9ad36cd04 (plain)
1
2
3
4
5
6
7
8
// |jit-test| slow
function x() {}
for (var j = 0; j < 9999; ++j) {
    (function() {
        x += x.watch("endsWith", ArrayBuffer);
        return 0 >> Function(x)
    })()
}