TypeScript/tests/baselines/reference/typeParameterWithInvalidConstraintType.errors.txt

13 lines
467 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeParameterWithInvalidConstraintType.ts (1 errors) ====
class A<T extends T> {
~~~~~~~~~~~
!!! 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();
}
}