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

6 lines
358 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/genericConstraint3.ts (1 errors) ====
interface C<P> { x: P; }
interface A<T, U extends C<T>> { x: U; }
~~~~~~~~~~~~~~
!!! Constraint of a type parameter cannot reference any type parameter from the same type parameter list.
interface B extends A<{}, { x: {} }> { } // Should not produce an error