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

15 lines
409 B
Plaintext

==== tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedVariables.ts (1 errors) ====
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;
~
!!! error TS2339: Property 'y' does not exist on type 'typeof A'.