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