TypeScript/tests/baselines/reference/module_augmentExistingVariable.errors.txt

8 lines
217 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/module_augmentExistingVariable.ts (1 errors) ====
var console: any;
module console {
~~~~~~~
!!! Duplicate identifier 'console'.
export var x = 2;
}