summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug655990.js
blob: 4ca4fd1f6cb3cb4d6aef37706f6dbec3784ed0c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
expect = 0;
summary = 0;
test();
function test() {
    function f(a, b, c) {
        return c;
    }
    if (gczeal == 'function') actual = f(1.5, 1.25, 1.125)
    else expect;
    (expect, actual, summary);
    var actual = '';
}