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

13 lines
337 B
Plaintext

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