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

12 lines
380 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/compiler/extendGenericArray.ts(6,5): error TS2322: Type 'string' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/extendGenericArray.ts (1 errors) ====
interface Array<T> {
foo(): T;
}
var arr: string[] = [];
var x: number = arr.foo();
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'string' is not assignable to type 'number'.