summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Promise/bug-1792196.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/non262/Promise/bug-1792196.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/tests/non262/Promise/bug-1792196.js b/js/src/tests/non262/Promise/bug-1792196.js
new file mode 100644
index 0000000000..946f5737de
--- /dev/null
+++ b/js/src/tests/non262/Promise/bug-1792196.js
@@ -0,0 +1,18 @@
+// |reftest| skip-if(!this.hasOwnProperty('settlePromiseNow'))
+
+function main() {
+ function v0(v1) {
+ throw "foobar";
+ }
+ const v8 = new Promise(v0);
+ const v9 = v8.catch();
+ const v11 = this.settlePromiseNow(v9);
+ function v12(v13) {
+ }
+ const v15 = new Promise(v11);
+ const v16 = v15.catch(v12);
+ gc();
+}
+main();
+
+this.reportCompare && reportCompare(true, true);