TypeScript/tests/baselines/reference/module_augmentExistingVariable.errors.txt
2014-09-11 16:11:08 -07:00

8 lines
231 B
Plaintext

==== tests/cases/compiler/module_augmentExistingVariable.ts (1 errors) ====
var console: any;
module console {
~~~~~~~
!!! error TS2300: Duplicate identifier 'console'.
export var x = 2;
}