1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
//// [tests/cases/compiler/overloadingOnConstantsInImplementation.ts] ////
=== overloadingOnConstantsInImplementation.ts ===
function foo(a: 'hi', x: string);
>foo : { (a: 'hi', x: string): any; (a: "hi", x: string): any; }
>a : "hi"
>x : string
function foo(a: 'hi', x: string);
>foo : { (a: "hi", x: string): any; (a: 'hi', x: string): any; }
>a : "hi"
>x : string
function foo(a: 'hi', x: any) {
>foo : { (a: "hi", x: string): any; (a: "hi", x: string): any; }
>a : "hi"
>x : any
}
|