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

16 lines
263 B
TypeScript

var recurser = function foo() {
};
// Error: foo should not be visible here
foo();
// recurser should be
recurser();
(function bar() {
// Error: foo should not be visible here either
foo();
});
// Error: bar should not be visible
bar();