Sign in
webkit
/
WebKit
/
69084d7b0eae184a8076d683d5feee69bc80ce44
/
.
/
JSTests
/
stress
/
get-array-length-phantom-new-array-buffer.js
blob: 0810c7822ac140c52d7bbff69ce193d6107356e7 [
file
] [
log
] [
blame
]
function
effects
()
{}
noInline
(
effects
);
function
foo
()
{
let x
=
[
1
,
2
,
3
];
effects
();
return
x
.
length
;
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
100000
;
++
i
)
{
if
(
foo
()
!==
3
)
throw
new
Error
();
}