TypeScript/tests/baselines/reference/privacyCheckTypeOfInvisibleModuleError.types

18 lines
326 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== 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
}