summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug725003.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/ion/bug725003.js')
-rw-r--r--js/src/jit-test/tests/ion/bug725003.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug725003.js b/js/src/jit-test/tests/ion/bug725003.js
new file mode 100644
index 0000000000..45564529d5
--- /dev/null
+++ b/js/src/jit-test/tests/ion/bug725003.js
@@ -0,0 +1,15 @@
+function TestCase(n, d, e, a) {
+ this.name = n;
+ this.description = d;
+ this.expect = e;
+ this.actual = a;
+ this.passed = getTestCaseResult(e, a);
+ this.reason = '';
+}
+function getTestCaseResult(expected, actual) {}
+var obj = new Function();
+for (var i = 0; i < 100; i++) {
+ obj['-1'] = new Array();
+ assertEq(obj['-1'] == null, false);
+ obj = new TestCase();
+}