Sign in
webkit
/
WebKit
/
8903dd42b5c8ca8812f8019c0337a8d5abf20bc4
/
.
/
PerformanceTests
/
SixSpeed
/
tests
/
rest
/
rest.es5
blob: 6c9b56a09a5710e3e241bea285be7598fe87628f [
file
] [
log
] [
blame
]
function
fn
()
{
return
arguments
[
1
];
}
assertEqual
(
fn
(),
undefined
);
assertEqual
(
fn
(
2
),
undefined
);
assertEqual
(
fn
(
2
,
4
),
4
);
test
(
function
()
{
fn
();
fn
(
2
);
fn
(
2
,
4
);
});