Sign in
webkit
/
WebKit
/
eed77a11249751f1b57a22699bda54381a2f6123
/
.
/
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
();
}