TypeScript/tests/baselines/reference/numericIndexerTyping1.js
Sheetal Nandi 6ab3adfd43 Modified the emitComment logic to handle emitting leading or trailing spaces depending on flags
Leading comments have trailing separator while trailing comments have leading space
This removes the extra trailing space in the trailing comments
2014-08-15 14:32:08 -07:00

20 lines
515 B
TypeScript

//// [numericIndexerTyping1.ts]
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
var i2: I2;
var r2: string = i2[1]; // error: numeric indexer returns the type of the string indexer
//// [numericIndexerTyping1.js]
var i;
var r = i[1]; // error: numeric indexer returns the type of the string indexer
var i2;
var r2 = i2[1]; // error: numeric indexer returns the type of the string indexer