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

9 lines
370 B
Plaintext

==== tests/cases/compiler/assignmentToObject.ts (1 errors) ====
var a = { toString: 5 };
var b: {} = a; // ok
var c: Object = a; // should be error
~
!!! Type '{ toString: number; }' is not assignable to type 'Object':
!!! Types of property 'toString' are incompatible:
!!! Type 'number' is not assignable to type '() => string'.