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

7 lines
368 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint3.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'.
}