summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug648502.js
blob: 26caf6b615b56b2acbb7789449b95a07e3efce9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function f(x, y) {
    -(undefined ? 0 : 0);
    assertEq(y === y, true);
    return 0;
}
f(1, 2);
{
    f(3, 3.14);
    f(true, f(4, 5));

    function g() {}
}