TypeScript/tests/baselines/reference/genericTypeUsedWithoutTypeArguments3.errors.txt
2014-09-12 13:35:07 -07:00

9 lines
393 B
Plaintext

tests/cases/compiler/genericTypeUsedWithoutTypeArguments3.ts(2,26): error TS2314: Generic type 'Foo<T>' requires 1 type argument(s).
==== tests/cases/compiler/genericTypeUsedWithoutTypeArguments3.ts (1 errors) ====
interface Foo<T> { }
interface Bar<T> extends Foo { }
~~~
!!! error TS2314: Generic type 'Foo<T>' requires 1 type argument(s).