TypeScript/tests/baselines/reference/inferentialTypingWithFunctionTypeNested.js

11 lines
328 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [inferentialTypingWithFunctionTypeNested.ts]
declare function map<T, U>(x: T, f: () => { x: (s: T) => U }): U;
declare function identity<V>(y: V): V;
var s = map("", () => { return { x: identity }; });
//// [inferentialTypingWithFunctionTypeNested.js]
var s = map("", function () {
return { x: identity };
});