==== 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); ~~~~~~~ !!! Cannot find name 'console'.