1'use strict'; 2require('../common'); 3const v8 = require('v8'); 4 5// Regression test for https://github.com/nodejs/node/issues/35559 6// It is important that the return value of the first call is not used, i.e. 7// that the first snapshot is GC-able while the second one is being created. 8v8.getHeapSnapshot(); 9v8.getHeapSnapshot(); 10