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

7 lines
116 B
TypeScript

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