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

12 lines
175 B
TypeScript

var recurser = function foo() {
// using the local name
foo();
// using the globally visible name
recurser();
};
(function bar() {
bar();
});