TypeScript/tests/baselines/reference/extendGenericArray.errors.txt
2014-11-05 12:26:03 -08:00

12 lines
380 B
Plaintext

tests/cases/compiler/extendGenericArray.ts(6,5): error TS2322: Type 'string' is not assignable to type 'number'.
==== tests/cases/compiler/extendGenericArray.ts (1 errors) ====
interface Array<T> {
foo(): T;
}
var arr: string[] = [];
var x: number = arr.foo();
~
!!! error TS2322: Type 'string' is not assignable to type 'number'.