summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/typedarray/bug1520536.js
blob: af6c8472bd09d65489f0cab02b929758902daa89 (plain)
1
2
3
let a = wrapWithProto(new Int16Array([300]), {});
let b = new Uint8ClampedArray(a);
assertEq(b[0], 255);