summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/typedarray/oom-allocating-copying-same-buffer-contents.js
blob: ec33e4ef8e8c7c41e9e6dc740e167c48bbd4a556 (plain)
1
2
3
4
5
6
7
8
9
// |jit-test| skip-if: !('oomTest' in this)

var buffer = new ArrayBuffer(16);
var i8 = new Int8Array(buffer);
var i16 = new Int16Array(buffer);

oomTest(function() {
  i8.set(i16);
});