summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1585159.js
blob: 077dee8832b22064c4fc80ad16ce14fb9b66e772 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Set a nursery size larger than the current nursery size.
gcparam("minNurseryBytes", 1024 * 1024);
gcparam("maxBytes", gcparam("gcBytes") + 4096);

// Allocate something in the nursery.
let obj = {'foo': 38, 'bar': "A string"};

// Trigger a last-ditch GC.
print(gc(0, "last-ditch"));