Sign in
webkit
/
WebKit
/
90848d1a03498139e72a756e822580544ca9d408
/
.
/
JSTests
/
stress
/
for-of-get-by-val-marks-clobbers-exit-state.js
blob: 6167fa7c3c6b92232b052a3f06489ed66662ae72 [
file
] [
log
] [
blame
]
const
a0
=
new
Array
(
100
);
a0
.
x
=
0
;
function
foo
()
{
for
(
const
q of a0
)
{}
}
for
(
let i
=
0
;
i
<
1000
;
i
++)
{
foo
();
}