TypeScript/tests/cases/compiler/functionOverloads2.ts

4 lines
135 B
TypeScript
Raw Normal View History

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