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

14 lines
432 B
Plaintext

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