TypeScript/tests/baselines/reference/genericFunctionCallSignatureReturnTypeMismatch.js

20 lines
326 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [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);