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

14 lines
656 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/compiler/assignmentToObject.ts(3,5): error TS2322: Type '{ toString: number; }' is not assignable to type 'Object'.
Types of property 'toString' are incompatible.
Type 'number' is not assignable to type '() => string'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/assignmentToObject.ts (1 errors) ====
var a = { toString: 5 };
var b: {} = a; // ok
var c: Object = a; // should be error
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type '{ toString: number; }' is not assignable to type 'Object'.
!!! error TS2322: Types of property 'toString' are incompatible.
!!! error TS2322: Type 'number' is not assignable to type '() => string'.
2014-07-13 01:04:16 +02:00