summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1723840.js
blob: 95bd7fd2dfb123abb18761f971cf62fd1f207c87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
gczeal(0);
gcstress = 1;
Object.defineProperty(this, "", {
    value: eval
});
gczeal(11);
gczeal(6, 5);
const a = { b: 7 };
const c = [a, ""];
const d = [c];
new WeakMap(d);