summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/typedarray/bug1518764.js
blob: 3ea5bfb76b49d06dcb3fcb2b0325cc3fa6c6d081 (plain)
1
2
3
4
5
6
7
8
// |jit-test| error:dead object

var g = newGlobal({newCompartment: true});
var ta = new g.Int32Array(1);
Int32Array.prototype.filter.call(ta, function() {
    nukeAllCCWs();
    return true;
});