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

10 lines
367 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/implementClausePrecedingExtends.ts (3 errors) ====
class C { foo: number }
class D implements C extends C { }
~~~~~~~
!!! '{' expected.
~
!!! ';' expected.
~
!!! Class 'D' incorrectly implements interface 'C':
!!! Property 'foo' is missing in type 'D'.