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

9 lines
183 B
TypeScript

class CDoc {
constructor() {
function doSomething(a: Function) {
}
doSomething(() => undefined);
doSomething(function () { });
}
}