summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/bug956173.js
blob: d88efaa7abff619bb3a5eee073cf0e4b3f258d9b (plain)
1
2
3
4
5
6
7
function foo() {
    {
      let x=arguments;
      return function() { return x; };
    }
}
foo()();