TypeScript/tests/baselines/reference/typeArgumentsShouldDisallowNonGenericOverloads.js
Sheetal Nandi 6ab3adfd43 Modified the emitComment logic to handle emitting leading or trailing spaces depending on flags
Leading comments have trailing separator while trailing comments have leading space
This removes the extra trailing space in the trailing comments
2014-08-15 14:32:08 -07:00

22 lines
676 B
TypeScript

//// [typeArgumentsShouldDisallowNonGenericOverloads.ts]
function foo(a: string): string;
function foo<T>(a: T): number;
function foo(a: any): any {
return "hi";
}
var x: number = foo<string>("hi"); // return type should be 'number'
var y: string = foo("hi"); // return type should be 'string'
var w: string = foo<string>("hi"); // should error
var z: number = foo("hi"); // should error
//// [typeArgumentsShouldDisallowNonGenericOverloads.js]
function foo(a) {
return "hi";
}
var x = foo("hi"); // return type should be 'number'
var y = foo("hi"); // return type should be 'string'
var w = foo("hi"); // should error
var z = foo("hi"); // should error