Sign in
webkit
/
WebKit
/
f6013b2d8a67a21431419ad45d183d56cb11b105
/
.
/
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
;