TypeScript/tests/baselines/reference/reboundIdentifierOnImportAlias.errors.txt
2014-07-26 08:13:52 -07:00

10 lines
299 B
Plaintext

==== tests/cases/compiler/reboundIdentifierOnImportAlias.ts (1 errors) ====
module Foo {
export var x = "hello";
}
module Bar {
var Foo = 1;
import F = Foo;
~~~
!!! Module 'Foo' is hidden by a local declaration with the same name
}