TypeScript/tests/baselines/reference/contextualTyping11.errors.txt
2014-07-12 17:30:19 -07:00

6 lines
358 B
Plaintext

==== tests/cases/compiler/contextualTyping11.ts (1 errors) ====
class foo { public bar:{id:number;}[] = [<foo>({})]; }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! 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'.