TypeScript/tests/cases/compiler/functionCall9.ts

6 lines
118 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
function foo(a?:string, b?:number){};
foo('foo', 1);
foo('foo');
foo('foo','bar');
foo('foo', 1, 'bar');
foo();