summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug563034.js
blob: 9dfa8c7b43506d453b7f47d3b5f9e772ece1e81d (plain)
1
2
3
4
5
6
7
8
9
10
11
// Binary: cache/js-dbg-64-c9212eb6175b-linux
// Flags:
//
function f(a) {
   function g() {
       yield function () a;
   }
   return g();
}
var x;
f(7).next()();