summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug714645.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/jaeger/bug714645.js')
-rw-r--r--js/src/jit-test/tests/jaeger/bug714645.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/bug714645.js b/js/src/jit-test/tests/jaeger/bug714645.js
new file mode 100644
index 0000000000..2bcfa25982
--- /dev/null
+++ b/js/src/jit-test/tests/jaeger/bug714645.js
@@ -0,0 +1,12 @@
+
+function testAddInconvertibleObjectAny() {
+ var count = 0;
+ function toString() { }
+ try {
+ for (var i = 0; i < 100; i++)
+ var q = count[count] && this ? testAddInconvertibleObjectAny : ++toString;
+ } catch (e) {
+ var dbg = count(toString);
+ }
+}
+testAddInconvertibleObjectAny();