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

9 lines
459 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/compiler/contextualTyping5.ts(1,13): error TS2322: Type '{}' is not assignable to type '{ id: number; }'.
Property 'id' is missing in type '{}'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/contextualTyping5.ts (1 errors) ====
class foo { public bar:{id:number;} = { }; }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type '{}' is not assignable to type '{ id: number; }'.
!!! error TS2322: Property 'id' is missing in type '{}'.