summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1055762.js
blob: 54f09bf168a8c2a89165f4c665f3be4d8c76fe66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// |jit-test| error: TypeError
function g() {
    f(0);
}
function f(y) {
    return (undefined <= y);
}
try {
    g();
} catch (e) {}
(function() {
    f()()
})();