Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
stress
/
must-handled-values-should-not-be-used-as-proven-constants-in-cfa.js
blob: c90febd832843d0744acc758520044b92657ccd2 [
file
] [
log
] [
blame
]
//@ runDefault("--forceEagerCompilation=1")
function
foo
()
{
let array
=
[];
for
(
let a
=
0
;
a
<
4
;
a
++)
{
array
[
a
+
1
]
=
0
;
}
gc
();
array
.
length
=
0
;
gc
();
var
bar
=
0
;
for
(
var
i
=
0
;
i
<
1000
;
i
++)
{
bar
[
0
]
=
String
.
fromCharCode
(
i
)[
0
];
}
}
foo
();