Files
Kmake/test/fixtures/report-oom.js
2026-05-26 23:36:42 -07:00

14 lines
193 B
JavaScript

'use strict';
const list = [];
while (true) {
const record = new MyRecord();
list.push(record);
}
function MyRecord() {
this.name = 'foo';
this.id = 128;
this.account = 98454324;
}