TypeScript/tests/baselines/reference/genericFunctionCallSignatureReturnTypeMismatch.errors.txt
2014-09-11 16:11:08 -07:00

14 lines
339 B
Plaintext

==== tests/cases/compiler/genericFunctionCallSignatureReturnTypeMismatch.ts (1 errors) ====
interface Array<T> {}
var f : { <T>(x:T): T; }
var g : { <S>() : S[]; };
f = g;
var s = f("str").toUpperCase();
console.log(s);
~~~~~~~
!!! error TS2304: Cannot find name 'console'.