TypeScript/tests/baselines/reference/privacyCheckTypeOfInvisibleModuleError.errors.txt
2014-09-11 16:11:08 -07:00

11 lines
336 B
Plaintext

==== tests/cases/compiler/privacyCheckTypeOfInvisibleModuleError.ts (1 errors) ====
module Outer {
module Inner {
export var m: typeof Inner;
}
export var f: typeof Inner;
~
!!! error TS4025: Exported variable 'f' has or is using private name 'Inner'.
}