TypeScript/tests/baselines/reference/instantiateConstraintsToTypeArguments2.js

6 lines
239 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [instantiateConstraintsToTypeArguments2.ts]
interface A<T extends A<T, S>, S extends A<T, S>> { }
interface B<T extends B<T, S>, S extends B<T, S>> extends A<B<T, S>, B<T, S>> { }
//// [instantiateConstraintsToTypeArguments2.js]