TypeScript/tests/baselines/reference/nestedModulePrivateAccess.types

16 lines
251 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/nestedModulePrivateAccess.ts ===
module a{
>a : typeof a
var x:number;
>x : number
module b{
>b : typeof b
var y = x; // should not be an error
>y : number
>x : number
}
}