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

9 lines
373 B
Plaintext
Raw Normal View History

tests/cases/compiler/recursiveInheritanceGeneric.ts(1,11): error TS2310: Type 'I5<T>' recursively references itself as a base type.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/recursiveInheritanceGeneric.ts (1 errors) ====
interface I5<T> extends I5<T> {
~~
!!! error TS2310: Type 'I5<T>' recursively references itself as a base type.
2014-07-13 01:04:16 +02:00
foo():void;
}