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

7 lines
369 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint2.ts (2 errors) ====
class C<T extends List<T> > {
~~~~~~~~~~~~~~~~~
!!! error TS2313: Constraint of a type parameter cannot reference any type parameter from the same type parameter list.
~~~~~~~
!!! error TS2304: Cannot find name 'List'.
}