summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug688974.js
blob: 0c88dc5bd21186d63500d161a681fd230a5c3bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Binary: cache/js-dbg-64-fecae145d884-linux
// Flags: -m -n
//

gczeal(2);
Object.defineProperty(Object.prototype, "b", {set: function() {}});
function C(a, b) {
    this.a=a;
    this.b=b;
}
var f = C.bind(0x2004, 2);
for (var i=0; i<10000; ++i)
    new f;