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

9 lines
391 B
Plaintext

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