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

16 lines
329 B
Plaintext

==== tests/cases/compiler/functionTypeArgumentAssignmentCompat.ts (1 errors) ====
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'.