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

17 lines
616 B
Plaintext

tests/cases/compiler/instantiatedBaseTypeConstraints.ts(1,15): error TS2313: Constraint of a type parameter cannot reference any type parameter from the same type parameter list.
==== tests/cases/compiler/instantiatedBaseTypeConstraints.ts (1 errors) ====
interface Foo<T extends Foo<T, C>, C> {
~~~~~~~~~~~~~~~~~~~
!!! error TS2313: Constraint of a type parameter cannot reference any type parameter from the same type parameter list.
foo(bar: C): void;
}
class Bar implements Foo<Bar, string> {
foo(bar: string): void {
}
}