summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/nested-rewind.js
blob: 231eef1f6a2610a311100dc9e82f3954aedf5ed3 (plain)
1
2
3
4
5
6
7
8
9
function g(x =
  function() {
    "use asm";
    function f(){}
    return f;
  }
) {
  "use asm";
}