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

12 lines
204 B
TypeScript

function salt() {
function pepper() { return 5;}
return pepper();
}
module M {
export function tungsten() {
function oxygen() { return 6; };
return oxygen();
}
}