summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/bug1696181.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/arguments/bug1696181.js')
-rw-r--r--js/src/jit-test/tests/arguments/bug1696181.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/arguments/bug1696181.js b/js/src/jit-test/tests/arguments/bug1696181.js
new file mode 100644
index 0000000000..816a8c00e3
--- /dev/null
+++ b/js/src/jit-test/tests/arguments/bug1696181.js
@@ -0,0 +1,15 @@
+function b() {}
+function c() {}
+
+function foo() {
+ for (f of [b,c]) {
+ (function () {
+ f.apply({}, arguments);
+ })(1,2,3,4)
+ }
+}
+
+with({}) {}
+for (var i = 0; i < 100; i++) {
+ foo();
+}