==== tests/cases/compiler/qualifiedModuleLocals.ts (1 errors) ==== module A { function b() {} export function a(){ A.b(); } // A.b should be an unresolved symbol error ~ !!! Property 'b' does not exist on type 'typeof A'. } A.a();