TypeScript/tests/baselines/reference/instantiateConstraintsToTypeArguments2.js
2014-07-12 17:30:19 -07:00

6 lines
239 B
TypeScript

//// [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]