DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1 / tests / cases / compiler / qualifiedModuleLocals.ts
123456789
module A { function b() {} export function a(){ A.b(); } // A.b should be an unresolved symbol error } A.a();