Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
get-my-argument-by-val-out-of-bounds-no-warm-up.js
blob: 5058e6bf1aa20c8147e9baca01370f4ce2638ea9 [
file
] [
log
] [
blame
]
function
foo
(
index
)
{
return
arguments
[
index
];
}
noInline
(
foo
);
var
result
=
foo
(
1
);
if
(
result
!==
void
0
)
throw
"Error: bad result at end: "
+
result
;