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

14 lines
423 B
Text
Raw Normal View History

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