summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug625718-1.js
blob: 601c2a8e6d2328b36898427b5f41e4e9275de73e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
}