Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
rest_parameters_basic_functionality.js
blob: 4dd29cb581e7c3915edc8a5c504964dee8512a62 [
file
] [
log
] [
blame
]
function
test
()
{
return
(
function
(
foo
,
...
args
)
{
return
args instanceof
Array
&&
args
+
""
===
"bar,baz"
;
}(
"foo"
,
"bar"
,
"baz"
));
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);