TypeScript/tests/cases/compiler/internalAliasClass.ts

10 lines
135 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @declaration: true
module a {
export class c {
}
}
module c {
import b = a.c;
export var x: b = new b();
}