summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/TypedObject/bug969159.js
blob: 18534a60992a1bcffece6205fbbf80a6c25da48c (plain)
1
2
3
4
5
6
7
8
9
// Test access to a 0-sized element (in this case,
// a zero-length array).

if (!this.hasOwnProperty("TypedObject"))
  quit();

var AA = TypedObject.uint8.array(0.).array(5);
var aa = new AA();
var aa0 = aa[0];