Sign in
webkit
/
WebKit
/
7c2d2b06cff0bde1c85f11402729e2b90317522d
/
.
/
JSTests
/
stress
/
for-in-body-replace-enumerable.js
blob: 289f8161df22162fe6306d35be6ad198edc9e8fc [
file
] [
log
] [
blame
]
function
foo
()
{
let a0
=
[
'a'
,
{}];
for
(
let q in a0
)
{
a0
=
new
Uint8Array
();
}
}
for
(
let i
=
0
;
i
<
1e3
;
i
++)
{
foo
();
}