tests/cases/compiler/recursiveInheritanceGeneric.ts(1,11): error TS2310: Type 'I5<T>' recursively references itself as a base type.


==== 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.
        foo():void;
    }  