TypeScript/tests/baselines/reference/module_augmentExistingVariable.errors.txt
2014-09-30 18:09:55 -07:00

14 lines
519 B
Plaintext

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