summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug825705.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/ion/bug825705.js')
-rw-r--r--js/src/jit-test/tests/ion/bug825705.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug825705.js b/js/src/jit-test/tests/ion/bug825705.js
new file mode 100644
index 0000000000..ebd30c21c8
--- /dev/null
+++ b/js/src/jit-test/tests/ion/bug825705.js
@@ -0,0 +1,8 @@
+// Test 1: When constructing x, we shouldn't take the prototype for this.
+// it will crash if that happens
+evalcx("\
+ var x = newGlobal().Object;\
+ function f() { return new x; }\
+ f();\
+ f();\
+", newGlobal());