summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1131035.js
blob: 6ff80f374372fe3f6e9bd6dec71df5b1397f6126 (plain)
1
2
3
4
5
6
7
8
9

function TestCase() {
  this.passed = 'x';
}
result = "pass";
for (var i = 0; i < 100; i++)
    new TestCase(result);
function Gen2(value) {}
Gen2.prototype = new TestCase();