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

17 lines
627 B
Text
Raw Normal View History

tests/cases/compiler/objectLiteralWithNumericPropertyName.ts(4,5): error TS2323: Type '{ 0: number; }' is not assignable to type 'A'.
Types of property '0' are incompatible.
Type 'number' is not assignable to type 'string'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/objectLiteralWithNumericPropertyName.ts (1 errors) ====
interface A {
0: string;
}
var x: A = {
~
!!! error TS2323: Type '{ 0: number; }' is not assignable to type 'A'.
!!! error TS2323: Types of property '0' are incompatible.
!!! error TS2323: Type 'number' is not assignable to type 'string'.
0: 3
};
2014-07-13 01:04:16 +02:00