TypeScript/tests/cases/compiler/innerTypeCheckOfLambdaArgument.ts
2014-07-12 17:30:19 -07:00

13 lines
262 B
TypeScript

function takesCallback(callback: (n) =>any) {
}
takesCallback(
function inner(n) {
// this line should raise an error
// otherwise, there's a bug in overload resolution / partial typechecking
var k: string = 10;
}
);