blob: 6612a871808bb411eb5d16a097d8f09368873db2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Binary: cache/js-dbg-64-fcca99426576-linux
// Flags: -m -n -a
//
function printStatus (msg) {}
F = function () {};
F.prototype = new Int32Array(1);
o = new F();
function f2(o){
with(this)
for(var x in o)
printStatus(o[x]);
}
f2([]);
|