TypeScript/tests/baselines/reference/stringIndexerAndConstructor1.errors.txt
2014-09-12 13:35:07 -07:00

10 lines
428 B
Plaintext

tests/cases/compiler/stringIndexerAndConstructor1.ts(3,5): error TS2411: Property '""' of type 'string' is not assignable to string index type 'number'.
==== tests/cases/compiler/stringIndexerAndConstructor1.ts (1 errors) ====
interface I {
[s: string]: number;
"": string;
~~~~~~~~~~~
!!! error TS2411: Property '""' of type 'string' is not assignable to string index type 'number'.
}