Sign in
webkit
/
WebKit
/
eed77a11249751f1b57a22699bda54381a2f6123
/
.
/
JSTests
/
stress
/
for-in-in-by-val-should-flush-registers.js
blob: c7443855587f47fba352343fe8e3c11fa710eb93 [
file
] [
log
] [
blame
]
const
a
=
[
undefined
];
a
.
toString
=
()=>{};
function
foo
()
{
for
(
let x in a
)
{
x in a
;
+
x
;
}
}
for
(
let i
=
0
;
i
<
10000
;
i
++)
{
foo
();
}