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

10 lines
386 B
Plaintext
Raw Normal View History

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