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

6 lines
78 B
TypeScript

function foo(a:string){};
foo('bar');
foo(2);
foo('foo', 'bar');
foo();