TypeScript/tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedVariables.ts
2014-07-12 17:30:19 -07:00

12 lines
151 B
TypeScript

module A {
export var x = 'hello world'
var y = 12;
}
var x: string;
var x = A.x;
// Error, since y is not exported
var y = A.y;