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

21 lines
785 B
Plaintext

tests/cases/compiler/numericIndexerTyping1.ts(9,5): error TS2322: Type 'Date' is not assignable to type 'string'.
tests/cases/compiler/numericIndexerTyping1.ts(12,5): error TS2322: Type 'Date' is not assignable to type 'string'.
==== tests/cases/compiler/numericIndexerTyping1.ts (2 errors) ====
interface I {
[x: string]: Date;
}
interface I2 extends I {
}
var i: I;
var r: string = i[1]; // error: numeric indexer returns the type of the string indexer
~
!!! error TS2322: Type 'Date' is not assignable to type 'string'.
var i2: I2;
var r2: string = i2[1]; // error: numeric indexer returns the type of the string indexer
~~
!!! error TS2322: Type 'Date' is not assignable to type 'string'.