TypeScript/tests/baselines/reference/overloadingOnConstantsInImplementation.js
2014-07-12 17:30:19 -07:00

10 lines
230 B
TypeScript

//// [overloadingOnConstantsInImplementation.ts]
function foo(a: 'hi', x: string);
function foo(a: 'hi', x: string);
function foo(a: 'hi', x: any) {
}
//// [overloadingOnConstantsInImplementation.js]
function foo(a, x) {
}