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

19 lines
444 B
Plaintext
Raw Normal View History

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