TypeScript/tests/cases/compiler/functionExpressionAndLambdaMatchesFunction.ts

9 lines
183 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
class CDoc {
constructor() {
function doSomething(a: Function) {
}
doSomething(() => undefined);
doSomething(function () { });
}
}