1 2 3 4 5 6 7 8 9 10 11 12
|
//// [tests/cases/compiler/genericTypeUsedWithoutTypeArguments3.ts] ////
=== genericTypeUsedWithoutTypeArguments3.ts ===
interface Foo<T> { }
>Foo : Symbol(Foo, Decl(genericTypeUsedWithoutTypeArguments3.ts, 0, 0))
>T : Symbol(T, Decl(genericTypeUsedWithoutTypeArguments3.ts, 0, 14))
interface Bar<T> extends Foo { }
>Bar : Symbol(Bar, Decl(genericTypeUsedWithoutTypeArguments3.ts, 0, 20))
>T : Symbol(T, Decl(genericTypeUsedWithoutTypeArguments3.ts, 1, 14))
>Foo : Symbol(Foo, Decl(genericTypeUsedWithoutTypeArguments3.ts, 0, 0))
|