TypeScript/tests/baselines/reference/genericConstraint3.errors.txt
2014-07-12 17:30:19 -07:00

6 lines
358 B
Plaintext

==== 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