summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug657986.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/auto-regress/bug657986.js')
-rw-r--r--js/src/jit-test/tests/auto-regress/bug657986.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug657986.js b/js/src/jit-test/tests/auto-regress/bug657986.js
new file mode 100644
index 000000000..eacaf67f1
--- /dev/null
+++ b/js/src/jit-test/tests/auto-regress/bug657986.js
@@ -0,0 +1,12 @@
+// Binary: cache/js-dbg-32-5d1cbc94bc42-linux
+// Flags: -m -n -a
+//
+function f(x) {
+ this.i = x;
+}
+for each(let e in [0, 0, []]) {
+ try {
+ f(e)
+ } catch (e) {}
+}
+print(uneval(this))