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

13 lines
380 B
TypeScript

class Base { foo() { } }
class Derived1 extends Base { bar() { } }
class Derived2 extends Base { baz() { } }
class Derived3 extends Base { biz() { } }
function foo(tagName: 'canvas'): Derived1;
function foo(tagName: 'div'): Derived2;
function foo(tagName: 'span'): Derived3;
function foo(tagName: string): Base;
function foo(tagName: any): Base {
return null;
}