DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / infiniteExpandingTypeThroughInheritanceInstantiation.ts
123456789
interface A<T> { x: A<B<T>> } interface B<T> extends A<T> // error { x: B<A<T>> }