summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1574877.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/gc/bug-1574877.js')
-rw-r--r--js/src/jit-test/tests/gc/bug-1574877.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/gc/bug-1574877.js b/js/src/jit-test/tests/gc/bug-1574877.js
new file mode 100644
index 0000000000..e53746bcb0
--- /dev/null
+++ b/js/src/jit-test/tests/gc/bug-1574877.js
@@ -0,0 +1,17 @@
+// |jit-test| skip-if: !('oomTest' in this)
+
+function parseModule(source) {
+ offThreadCompileModuleToStencil(source);
+ var stencil = finishOffThreadStencil();
+ return instantiateModuleStencil(stencil);
+}
+function loadFile(lfVarx) {
+ oomTest(function() {
+ parseModule(lfVarx);
+ });
+}
+loadFile(`
+ expect = new class prototype extends Object {
+ a43 = function () {}
+ }
+`);