blob: bf288b93fb62c2af9e11c7750da8e9ff1c9bfa72 [file] [log] [blame]
// This test passes if it does not crash.
arr = new Array;
Object.defineProperty(arr, 18, ({writable: true, configurable: true}));
for (var i = 0; i < 3; ++i) {
Array.prototype.push.apply(arr, ["", () => { }, {}]);
Array.prototype.sort.apply(arr, [edenGC, []]);
}