summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/TypedObject/bug1102329.js
blob: 937c2f9d674c4408cee4924d37f716e615315d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if (typeof TypedObject === "undefined")
  quit();

A = Array.bind()
var {
    StructType
} = TypedObject
var A = new StructType({});
(function() {
    new A
    for (var i = 0; i < 9; i++) {}
})()