TypeScript/tests/cases/compiler/internalAliasVar.ts
2014-07-12 17:30:19 -07:00

10 lines
126 B
TypeScript

// @declaration: true
module a {
export var x = 10;
}
module c {
import b = a.x;
export var bVal = b;
}