TypeScript/tests/baselines/reference/classIndexer2.errors.txt
2014-09-11 16:11:08 -07:00

10 lines
307 B
Plaintext

==== tests/cases/compiler/classIndexer2.ts (1 errors) ====
class C123 {
[s: string]: number;
x: number;
y: string;
~~~~~~~~~~
!!! error TS2411: Property 'y' of type 'string' is not assignable to string index type 'number'.
constructor() {
}
}