test262/implementation-contributed/javascriptcore/stress/array-indexof-fast-path-eff...

12 lines
221 B
JavaScript

// This shouldn't crash when running with ASAN.
let arr = [];
for (var i = 0; i < 1000000; i++)
arr[i] = [];
arr.indexOf(new Object(), {
valueOf: function () {
arr.length = 0;
return 0;
}
});