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

13 lines
234 B
JavaScript

//// [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;
});