DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-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();