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

8 lines
323 B
Plaintext

tests/cases/compiler/classInheritence.ts(2,7): error TS2310: Type 'A' recursively references itself as a base type.
==== tests/cases/compiler/classInheritence.ts (1 errors) ====
class B extends A { }
class A extends A { }
~
!!! error TS2310: Type 'A' recursively references itself as a base type.