swc/crates/swc_ecma_parser/tests/tsc/ModuleWithExportedAndNonExportedVariables.ts

12 lines
140 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;