TypeScript/tests/baselines/reference/contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.js
Sheetal Nandi 6ab3adfd43 Modified the emitComment logic to handle emitting leading or trailing spaces depending on flags
Leading comments have trailing separator while trailing comments have leading space
This removes the extra trailing space in the trailing comments
2014-08-15 14:32:08 -07:00

18 lines
660 B
JavaScript

//// [contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.ts]
function f<T>() {
function g<U extends T>(u: U): U { return null }
return g;
}
var h: <V, W>(v: V, func: (v: V) => W) => W;
var x = h("", f<string>()); // Call should succeed and x should be string. All type parameters should be instantiated to string
//// [contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.js]
function f() {
function g(u) {
return null;
}
return g;
}
var h;
var x = h("", f()); // Call should succeed and x should be string. All type parameters should be instantiated to string