summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug631082.js
blob: 61db35a57bdd1afe0f81ba57da28ee2f44c68b2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
var t;
(function () {
    t = (function() {
            yield k();
        })();
    function h() {
    }
    function k() {
        return function() { h(); };
    }
})();
t.next();