Sign in
webkit
/
WebKit
/
067c47966a721d3fa5ff09389f461428e1e8b430
/
.
/
JSTests
/
microbenchmarks
/
double-get-by-val-out-of-bounds.js
blob: 48b0c42e4a6dc3cc64ebfaa137c60f725a28121b [
file
] [
log
] [
blame
]
function
foo
(
a
)
{
return
a
[
1
];
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
{
var
result
=
foo
([
42.5
]);
if
(
result
!==
void
0
)
throw
"Error: bad value: "
+
result
;
}