TypeScript/tests/baselines/reference/classIndexer4.errors.txt

13 lines
341 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/classIndexer4.ts (1 errors) ====
class C123 {
[s: string]: number;
constructor() {
}
}
interface D123 extends C123 {
x: number;
y: string;
~~~~~~~~~~
!!! Property 'y' of type 'string' is not assignable to string index type 'number'.
}