Sign in
webkit
/
WebKit
/
6ff2ac414cff1b0d36a015f2abe5652196415334
/
.
/
JSTests
/
stress
/
HasIndexedProperty-does-gc.js
blob: b11629f5d8c4e890190ff642189a074ba8caf075 [
file
] [
log
] [
blame
]
// This test should not crash.
function
foo
(
a
)
{
return
0
in a
;
}
for
(
let i
=
0
;
i
<
100000
;
i
++)
{
const
str
=
new
String
(
'asdf'
);
str
[
42
]
=
'x'
;
// Give it ArrayStorage
foo
(
str
);
}