TypeScript/tests/baselines/reference/indexIntoArraySubclass.errors.txt
2014-07-12 17:30:19 -07:00

7 lines
250 B
Plaintext

==== 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
~
!!! Type 'number' is not assignable to type 'string'.