summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/inlining/inline-istypedarray-on-nontypedarray.js
blob: e1c540d19d6936beede2c2d3bda598ed5d82e44b (plain)
1
2
3
4
5
6
(new Int8Array(3)).join();
[Math.abs, Math.abs].forEach(x => {
    try {
        Int8Array.prototype.join.call(x);
    } catch(e) {}
});