blob: 601c2a8e6d2328b36898427b5f41e4e9275de73e [file] [log] [blame]
function f3() { return 2; };
function f4(o) { o.g4 = function() {}; };
var f = function() {};
f.x = undefined;
f4(new String("x"));
f3();
f4(f);
for(var i=0; i<20; i++) {
f4(Math);
}