blob: 701490717339efcc1f9d17165217c9a4358e972e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// |jit-test| error:ReferenceError
// Binary: cache/js-dbg-32-55f463c562d4-linux
// Flags: -m -n -a
//
o3 = evalcx("split")
function f3(o) {
try {
new o
} catch(e) {}
}
function f16(o) {
Object.getOwnPropertyNames(o);
o.__defineGetter__("prototype", function() {})
}
for (;;) {
new f3(o3);
f16(o3)
}
|