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

7 lines
100 B
TypeScript

module Foo {
export var x = "hello";
}
module Bar {
var Foo = 1;
import F = Foo;
}