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

12 lines
639 B
Plaintext

tests/cases/conformance/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints2.ts(1,9): error TS2313: Constraint of a type parameter cannot reference any type parameter from the same type parameter list.
==== tests/cases/conformance/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints2.ts (1 errors) ====
class C<T extends C<T>> { // error
~~~~~~~~~~~~~~
!!! error TS2313: Constraint of a type parameter cannot reference any type parameter from the same type parameter list.
constructor(x: T) { }
}
var c = new C(1);
var c = new C(new C('')); // error