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

20 lines
326 B
TypeScript

//// [genericFunctionCallSignatureReturnTypeMismatch.ts]
interface Array<T> {}
var f : { <T>(x:T): T; }
var g : { <S>() : S[]; };
f = g;
var s = f("str").toUpperCase();
console.log(s);
//// [genericFunctionCallSignatureReturnTypeMismatch.js]
var f;
var g;
f = g;
var s = f("str").toUpperCase();
console.log(s);