TypeScript/tests/baselines/reference/qualifiedModuleLocals.errors.txt
2014-07-12 17:30:19 -07:00

13 lines
323 B
Plaintext

==== 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();