summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/apply-closed-over-arguments.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/arguments/apply-closed-over-arguments.js')
-rw-r--r--js/src/jit-test/tests/arguments/apply-closed-over-arguments.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/arguments/apply-closed-over-arguments.js b/js/src/jit-test/tests/arguments/apply-closed-over-arguments.js
new file mode 100644
index 0000000000..708d4cdb09
--- /dev/null
+++ b/js/src/jit-test/tests/arguments/apply-closed-over-arguments.js
@@ -0,0 +1,14 @@
+function bar(x,y) {
+ return x + y;
+}
+
+function foo(x, y) {
+ function closeOver() { return x; }
+ return bar.apply({}, arguments);
+}
+
+var sum = 0;
+for (var i = 0; i < 100; i++) {
+ sum += foo(1,2);
+}
+assertEq(sum, 300)