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

13 lines
481 B
Plaintext

==== tests/cases/compiler/typeParameterWithInvalidConstraintType.ts (1 errors) ====
class A<T extends T> {
~~~~~~~~~~~
!!! error TS2313: Constraint of a type parameter cannot reference any type parameter from the same type parameter list.
foo() {
var x: T;
// no error expected below this line
var a = x.foo();
var b = new x(123);
var c = x[1];
var d = x();
}
}