TypeScript/tests/cases/compiler/functionCall10.ts

6 lines
83 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
function foo(...a:number[]){};
foo(0, 1);
foo('foo');
foo();
foo(1, 'bar');