TypeScript/tests/baselines/reference/inheritFromGenericTypeParameter.errors.txt
2014-09-11 16:11:08 -07:00

7 lines
332 B
Plaintext

==== tests/cases/compiler/inheritFromGenericTypeParameter.ts (2 errors) ====
class C<T> extends T { }
~
!!! error TS2311: A class may only extend another class.
interface I<T> extends T { }
~
!!! error TS2312: An interface may only extend a class or another interface.