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");