comparison: js/src/jit-test/tests/arguments/bug956173.js
js/src/jit-test/tests/arguments/bug956173.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function foo() { |
|
2 let (x=arguments) { |
|
3 return function() { return x; }; |
|
4 } |
|
5 } |
|
6 foo()(); |