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

7 lines
246 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/numericIndexerConstraint.ts (1 errors) ====
class C {
0: number;
~~~~~~~~~~
!!! Property '0' of type 'number' is not assignable to numeric index type 'RegExp'.
[x: number]: RegExp;
}