summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug652177.js
blob: 324262d6ae25d4f07804a38a26fcecaf10e8c9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Binary: cache/js-dbg-32-d5fcfa622f16-linux
// Flags:
//
load(libdir + "immutable-prototype.js");

Function.toLocaleString.__proto__ = null
y = {}.__proto__
y.p = function() {}
y.__defineSetter__("", function() {})
if (globalPrototypeChainIsMutable())
    y.__proto__ = Function.toLocaleString;
function b(a) {
    this.__proto__ = a;
    Object.freeze(this)
}
for each(z in []) {
    new b
}