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

5 lines
188 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/classInheritence.ts (1 errors) ====
class B extends A { }
class A extends A { }
~
2014-07-13 01:04:16 +02:00
!!! Type 'A' recursively references itself as a base type.