TypeScript/tests/baselines/reference/modFunctionCrash.js

11 lines
228 B
TypeScript

//// [modFunctionCrash.ts]
declare module Q {
function f(fn:()=>void); // typechecking the function type shouldnot crash the compiler
}
Q.f(function() {this;});
//// [modFunctionCrash.js]
Q.f(function () { this; });