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

6 lines
178 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/exportSameNameFuncVar.ts (1 errors) ====
export var a = 10;
export function a() {
~
!!! Duplicate identifier 'a'.
}