Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
dfg-node-convert-to-constant-must-clear-varargs-flags.js
blob: dab790b87c27e732c1b0651ddbc133a919a6f5ef [
file
] [
log
] [
blame
]
function
doIndexOf
(
a
)
{
a
.
indexOf
(
a
);
}
function
bar
(
f
)
{
f
();
}
let array
=
[
20
];
for
(
let i
=
0
;
i
<
100000
;
++
i
)
{
bar
(()
=>
{
return
doIndexOf
(
array
.
concat
());
});
}