Sign in
webkit
/
WebKit
/
00d9c36630c3b100532e86e2616da21d7c5e504a
/
.
/
JSTests
/
complex
/
for-in-clobberize.js
blob: ec901920a145a138c0bba5182ea681937d313a2a [
file
] [
log
] [
blame
]
Array
.
prototype
.
__proto__
=
{};
let a
=
[];
for
(
let i
=
0
;
i
<
100
;
i
++)
{
a
.
unshift
(
undefined
);
for
(
let x in a
);
}