TypeScript/tests/baselines/reference/privacyCheckTypeOfInvisibleModuleError.types
2014-08-15 14:37:48 -07:00

18 lines
326 B
Plaintext

=== tests/cases/compiler/privacyCheckTypeOfInvisibleModuleError.ts ===
module Outer {
>Outer : typeof Outer
module Inner {
>Inner : typeof Inner
export var m: typeof Inner;
>m : typeof Inner
>Inner : typeof Inner
}
export var f: typeof Inner;
>f : typeof Inner
>Inner : typeof Inner
}