TypeScript/tests/cases/compiler/innerTypeCheckOfLambdaArgument.ts

13 lines
262 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
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;
}
);