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

7 lines
77 B
TypeScript

function fn() {
return fn.n;
}
module fn {
export var n = 1;
}