summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1354480.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/gc/bug-1354480.js')
-rw-r--r--js/src/jit-test/tests/gc/bug-1354480.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/gc/bug-1354480.js b/js/src/jit-test/tests/gc/bug-1354480.js
new file mode 100644
index 0000000000..c80ec01f9f
--- /dev/null
+++ b/js/src/jit-test/tests/gc/bug-1354480.js
@@ -0,0 +1,10 @@
+// |jit-test| error: TypeError
+test = "function f(a) { return a } f`a$b`";
+evalWithCache(test, {});
+dbg = new Debugger();
+gczeal(9, 1);
+dbg.findScripts('January 0 0 is invalid');
+function evalWithCache(code, ctx) {
+ ctx.global = newGlobal();
+ evaluate(code, ctx)
+}