TypeScript/tests/cases/compiler/functionCall9.ts
2014-07-12 17:30:19 -07:00

6 lines
118 B
TypeScript

function foo(a?:string, b?:number){};
foo('foo', 1);
foo('foo');
foo('foo','bar');
foo('foo', 1, 'bar');
foo();