TypeScript/tests/baselines/reference/importAndVariableDeclarationConflict4.errors.txt
2014-07-12 17:30:19 -07:00

10 lines
266 B
Plaintext

==== tests/cases/compiler/importAndVariableDeclarationConflict4.ts (1 errors) ====
module m {
export var m = '';
}
var x = '';
import x = m.m;
~~~~~~~~~~~~~~~
!!! Import declaration conflicts with local declaration of 'x'