TypeScript/tests/baselines/reference/inheritFromGenericTypeParameter.errors.txt
2014-07-12 17:30:19 -07:00

7 lines
304 B
Plaintext

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