summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug621328.js
blob: f755549c96b0948117825b2298b912a2780b63fe (plain)
1
2
3
4
5
6
7
8
9
function foo() {
};
function f() {
    var e = foo;
    a = new e();
    assertEq(typeof(a), "object");
    e=a;
}
f();