Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
licm-should-handle-if-a-hoist-causes-a-provable-osr-exit.js
blob: f9d89a5eb2d35a7a2f8b858fa82624e18bfba97a [
file
] [
log
] [
blame
]
const
a
=
[
0
];
function
foo
()
{
for
(
const
x1 of a
)
{
for
(
const
x2 of a
)
{
with
(
0
)
{
Object
;
}
}
}
for
(
let i
=
0
;
i
<
100
;
i
++)
{
}
}
foo
();