TypeScript/tests/baselines/reference/genericFunctionCallSignatureReturnTypeMismatch.errors.txt

17 lines
464 B
Plaintext
Raw Normal View History

tests/cases/compiler/genericFunctionCallSignatureReturnTypeMismatch.ts(10,1): error TS2304: Cannot find name 'console'.
2014-07-13 01:04:16 +02:00
==== 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'.
2014-07-13 01:04:16 +02:00