TypeScript/tests/cases/compiler/functionOverloads.ts

4 lines
124 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
function foo(): string;
function foo(bar: string): number;
function foo(bar?: string): any { return "" };
var x = foo(5);