summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug637010.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/auto-regress/bug637010.js')
-rw-r--r--js/src/jit-test/tests/auto-regress/bug637010.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/auto-regress/bug637010.js b/js/src/jit-test/tests/auto-regress/bug637010.js
new file mode 100644
index 000000000..3490f6c9f
--- /dev/null
+++ b/js/src/jit-test/tests/auto-regress/bug637010.js
@@ -0,0 +1,13 @@
+// Binary: cache/js-dbg-64-d708c2fa7fea-linux
+// Flags:
+//
+var o0 = Iterator.prototype;
+function f0(o) {}
+try {
+ for(var i=0; i<7; i++) {
+ try { o0.prototype(); } catch(e) {
+ if (o0.next() != 7)
+ throw "7 not yielded";
+ };
+ }
+} catch(exc1) {}