Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
array-indexof-fast-path-effects.js
blob: 2dac83cb1e7f6618932039f2bd23609439a473c3 [
file
] [
log
] [
blame
]
// 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
;
}
});