TypeScript/tests/baselines/reference/contextualTyping11.errors.txt
2014-09-12 13:35:07 -07:00

11 lines
No EOL
633 B
Text

tests/cases/compiler/contextualTyping11.ts(1,13): error TS2322: Type 'foo[]' is not assignable to type '{ id: number; }[]':
Type 'foo' is not assignable to type '{ id: number; }':
Property 'id' is missing in type 'foo'.
==== tests/cases/compiler/contextualTyping11.ts (1 errors) ====
class foo { public bar:{id:number;}[] = [<foo>({})]; }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! error TS2322: Type 'foo[]' is not assignable to type '{ id: number; }[]':
!!! error TS2322: Type 'foo' is not assignable to type '{ id: number; }':
!!! error TS2322: Property 'id' is missing in type 'foo'.