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

9 lines
223 B
TypeScript

// type inference on 'bug' should give 'any'
interface Ib { m(test: string, fn: Function); }
var b: Ib = { m: function (test: string, fn: Function) { } };
b.m("test", function (bug) {
var a: number = bug;
});